From 0eb83b878a304ba7c50dac9ff73c085ee9931ed4 Mon Sep 17 00:00:00 2001 From: sloop Date: Tue, 9 Aug 2016 00:19:12 +0800 Subject: [PATCH] Update value compute --- CustomView/Advance/[10]Matrix_Method.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CustomView/Advance/[10]Matrix_Method.md b/CustomView/Advance/[10]Matrix_Method.md index b290034..bc5094c 100644 --- a/CustomView/Advance/[10]Matrix_Method.md +++ b/CustomView/Advance/[10]Matrix_Method.md @@ -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