一个扩展了Curve的抽象基类。CurvePath仅仅是一个已连接的曲线的数组,但保留了曲线的API。
构造函数中不传入参数。
共有属性请参见其基类Curve。
Curves数组。
是否自动闭合路径。
共有方法请参见其基类Curve。
添加一条曲线到.curves数组中。
添加一条lineCurve用于闭合路径。
Get list of cumulative curve lengths of the curves in the .curves array.
t — A position on the curve. Must be in the range [0, 1].
Returns a vector for a given position on the curve path.
divisions -- 曲线分段数量。默认值为12。
返回一组使用getPoint(t)获得的divisions + 1个点。
divisions -- 曲线分段数量。默认值为40。
返回一组使用getPointAt(u)获得的divisions + 1个均分点。