Catmull-Rom 样条曲线是一种立方样条曲线。
除第一个和最后一个控制点外,其他控制点的切线都是通过上一个和下一个控制点计算出来的。
Catmull-Rom样条属于C1类。
Name | Type | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
具有以下属性的对象:
|
Throws:
-
DeveloperError : points.length 必须大于或等于 2。
-
DeveloperError : times.length 必须等于 points.length。
Example:
// spline above the earth from Philadelphia to Los Angeles
var spline = new SuperMap3D.CatmullRomSpline({
times : [ 0.0, 1.5, 3.0, 4.5, 6.0 ],
points : [
new SuperMap3D.Cartesian3(1235398.0, -4810983.0, 4146266.0),
new SuperMap3D.Cartesian3(1372574.0, -5345182.0, 4606657.0),
new SuperMap3D.Cartesian3(-757983.0, -5542796.0, 4514323.0),
new SuperMap3D.Cartesian3(-2821260.0, -5248423.0, 4021290.0),
new SuperMap3D.Cartesian3(-2539788.0, -4724797.0, 3620093.0)
]
});
var p0 = spline.evaluate(times[i]); // equal to positions[i]
var p1 = spline.evaluate(times[i] + delta); // interpolated value when delta < times[i + 1] - times[i]
See:
Members
-
readonlyfirstTangent : Cartesian3
-
第一个控制点的切线。
-
readonlylastTangent : Cartesian3
-
最后一个控制点的切线。
-
readonlypoints : Array.<Cartesian3>
-
Cartesian3
控制点数组。 -
控制点的时间数组。
Methods
-
evaluate(time, result) → Cartesian3
-
在给定时间对曲线求值。
Name Type Description time
Number 计算曲线的时间。 result
Cartesian3 optional 存储结果的对象。 Returns:
修改后的结果参数或给定时间曲线上该点的新实例。Throws:
-
在 times 中查找索引i,使得参数时间位于区间 [times[i], times[i + 1]] 中。
Name Type Description time
Number 时间。 Returns:
区间起始位置元素的索引。Throws: