A.void mapPoints(float[]pts)方法仅有一个参数,pts数组作为参数传递原始数值,计算结果仍存放在pts中。
B.void mapPoints(float[]dst,float[]src),src作为参数传递原始数值,计算结果存放在dst中,src不变。
C.void mapPoints(float[]dst,int dstIndex,float[]src,in tsrcIndex,int pointCount)可以指定只计算一部分数值。
D.void mapPoints(float[]dst,int dstIndex,float[]src,int srcIndex,int pointCount)可以指定计算所有分数值。