Update value compute

This commit is contained in:
sloop
2016-08-07 11:58:49 +08:00
parent 39a7ff5ce8
commit e450e90f84

View File

@@ -130,9 +130,22 @@ void getValues (float[] values)
**1.mapPoints** **1.mapPoints**
``` ```
void mapPoints (float[] pts)
void mapPoints (float[] dst, float[] src)
void mapPoints (float[] dst, int dstIndex,float[] src, int srcIndex, int pointCount)
``` ```
计算一组点基于当前Matrix变换后的位置(由于是计算点所以参数中的float数组长度一般都是偶数的)。
它有三个重载方法:
**2.mapRadius** **2.mapRadius**