在变形目标使用的权重值数组上线性插值的样条线。
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
options
|
Object |
具有以下属性的对象:
|
Throws:
-
DeveloperError : weights.length 必须大于或等于 2。
-
DeveloperError :times.length 必须是 weights.length 的一个因子。
Example:
const times = [ 0.0, 1.5, 3.0, 4.5, 6.0 ];
const weights = [0.0, 1.0, 0.25, 0.75, 0.5, 0.5, 0.75, 0.25, 1.0, 0.0]; //Two targets
const spline = new Cesium.WeightSpline({
times : times,
weights : weights
});
const p0 = spline.evaluate(times[0]);
See:
Methods
将给定时间限制在样条曲线覆盖的时间段内。
Name | Type | Description |
---|---|---|
time
|
Number | 时间。 |
Returns:
时间,夹在动画时期。
在给定时间评估曲线。
Name | Type | Description |
---|---|---|
time
|
Number | 评估曲线的时间。 |
result
|
Array.<Number> | 可选 存储结果的对象。 |
Returns:
修改后的结果参数或给定时间曲线上点的新实例。
Throws:
查找索引
i
以使参数
time
在区间 [
times
[times[i], times[i + 1]]
中。
Name | Type | Description |
---|---|---|
time
|
Number | 时间。 |
Returns:
间隔开始处元素的索引。
Throws:
将给定时间包装到样条覆盖的时间段。
Name | Type | Description |
---|---|---|
time
|
Number | 时间。 |
Returns:
时间,围绕着更新的动画。