This commit is contained in:
sloop
2016-05-27 01:11:05 +08:00
parent 0f20e0ed68
commit 4bd6a69858

View File

@@ -64,6 +64,7 @@ PathMeasure的方法也不多接下来我们就逐一的讲解一下。
**在这里有两点需要明确:**
>
* 1. 不论 forceClosed 设置为何种状态(true 或者 false) 都不会影响原有Path的状态**即 Path 与 PathMeasure 关联之后Path不会有任何改变。**
* 2. forceClosed 的设置状态可能会影响测量结果,**如果 Path 未闭合但在与 PathMeasure 关联的时候设置 forceClosed 为 true 时,测量结果可能会比 Path 实际长度稍长一点。**
@@ -87,6 +88,15 @@ PathMeasure的方法也不多接下来我们就逐一的讲解一下。
canvas.drawPath(path,mDeafultPaint);
```
log如下:
```
25521-25521/com.gcssloop.canvas E/TAG: forceClosed=false---->600.0
25521-25521/com.gcssloop.canvas E/TAG: forceClosed=true----->800.0
```
绘制在界面上的效果如下:
## 总结