MorphWeightSpline

new Cesium.MorphWeightSpline (options)

在变形目标使用的权重值数组上线性插值的样条线。
Name Type Description
options Object 具有以下属性的对象:
姓名 类型 描述
times 数组.<数字> 每个点处严格递增的无单位浮点时间数组。这些值与时钟时间无关。它们是曲线的参数化。
weights 数组.<数字> 给定的浮点控制权重数组。对权重进行排序,以便目标的所有权重按时间顺序以及它们出现在变形目标所在的 glTF 中的顺序给出。这意味着对于 2 个目标,权重 = [w(0,0), w(0,1), w(1,0), w(1,1) ...] 其中 i 和 j 在 w(i,j ) 分别是时间指标和目标指标。
Throws:
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

clampTime (time) Number

将给定时间限制在样条曲线覆盖的时间段内。
Name Type Description
time Number 时间。
Returns:
时间,夹在动画时期。

evaluate (time, result ) Array.<Number>

在给定时间评估曲线。
Name Type Description
time Number 评估曲线的时间。
result Array.<Number> 可选 存储结果的对象。
Returns:
修改后的结果参数或给定时间曲线上点的新实例。
Throws:
  • DeveloperError : time 必须在 [t 0 , t n ] 范围内,其中 t 0 是数组 times 中的第一个元素, t n 是数组 times 中的最后一个元素。

findTimeInterval (time) Number

查找索引 i 以使参数 time 在区间 [ times [times[i], times[i + 1]] 中。
Name Type Description
time Number 时间。
Returns:
间隔开始处元素的索引。
Throws:
  • DeveloperError : time 必须在 [t 0 , t n ] 范围内,其中 t 0 是数组 times 中的第一个元素, t n 是数组 times 中的最后一个元素。

wrapTime (time) Number

将给定时间包装到样条覆盖的时间段。
Name Type Description
time Number 时间。
Returns:
时间,围绕着更新的动画。