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 可选 用于转换数组的起始索引。
lastIndex Number packedArray.length 可选 用于转换数组的 lastIndex。
result Object 可选 存储结果的对象。
Returns:
修改后的结果参数或新的 Object 实例(如果未提供)。