Update value compute

This commit is contained in:
sloop
2016-08-09 00:19:12 +08:00
parent d8e8d9eb56
commit 0eb83b878a

View File

@@ -209,6 +209,15 @@ after : dst=[0.0, 0.0, 40.0, 100.0, 200.0, 300.0]
(3) `void mapPoints (float[] dst, int dstIndex,float[] src, int srcIndex, int pointCount)` 可以指定只计算一部分数值。
参数 | 摘要
---|---
dst | 目标数据
dstIndex | 目标数据存储位置起始下标
src | 源数据
srcIndex | 源数据存储位置起始下标
pointCount | 计算的点个数
示例:
``` java