PackableForInterpolation

PackableForInterpolation ()

用于 Packable 类型的静态接口,这些类型在与其包装价值不同的表示形式。这些方法和属性应该在构造函数上定义。
See:

Members

static Cesium.PackableForInterpolation.packedInterpolationLength : Number

用于以可插值形式将对象存储到数组中的元素数。

Methods

static Cesium.PackableForInterpolation.convertPackedArrayForInterpolation (packedArray, startingIndex , lastIndex , result)

将压缩数组转换为适合插值的形式。
Name Type Default Description
packedArray Array.<Number> 压缩数组。
startingIndex Number 0 可选 要转换的第一个元素的索引。
lastIndex Number packedArray.length 可选 最后要转换的元素的索引。
result Array.<Number> 将结果存储到的对象。

static Cesium.PackableForInterpolation.unpackInterpolationResult (array, sourceArray, startingIndex , lastIndex , result ) Object

从使用 PackableForInterpolation.convertPackedArrayForInterpolation 转换的打包数组中检索实例。
Name Type Default Description
array Array.<Number> 先前打包用于插值的数组。
sourceArray Array.<Number> 原始打包数组。
startingIndex Number 0 可选 startingIndex用于转换数组。
lastIndex Number packedArray.length 可选 用于转换数组的lastIndex。
result Object 可选 将结果存储到的对象。
Returns:
修改后的结果参数或一个新的Object实例(如果未提供)。