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)可以指定計算所有分數值。