Rotation

表示始终插值的 Packable 数字朝向最短的旋转角度。永远不要直接使用此对象而是传递给 SampledProperty 的构造函数为了表示二维旋转角度。
Example:
var time1 = Cesium.JulianDate.fromIso8601('2010-05-07T00:00:00');
var time2 = Cesium.JulianDate.fromIso8601('2010-05-07T00:01:00');
var time3 = Cesium.JulianDate.fromIso8601('2010-05-07T00:02:00');

var property = new Cesium.SampledProperty(Cesium.Rotation);
property.addSample(time1, 0);
property.addSample(time3, Cesium.Math.toRadians(350));

//Getting the value at time2 will equal 355 degrees instead
//of 175 degrees (which is what you get if you construct
//a SampledProperty(Number) instead.  Note, the actual
//return value is in radians, not degrees.
property.getValue(time2);
See:

Members

static Cesium.Rotation.packedLength : Number

用于将对象打包到数组中的元素数。

Methods

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

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

static Cesium.Rotation.pack (value, array, startingIndex ) Array.<Number>

将提供的实例存储到提供的数组中。
Name Type Default Description
value Rotation 要打包的值。
array Array.<Number> 要打包的数组。
startingIndex Number 0 可选 开始包装元素的数组索引。
Returns:
打包到的数组

static Cesium.Rotation.unpack (array, startingIndex , result ) Rotation

从压缩数组中检索实例。
Name Type Default Description
array Array.<Number> 压缩数组。
startingIndex Number 0 可选 要解压缩的元素的起始索引。
result Rotation 可选 将结果存储到的对象。
Returns:
修改后的结果参数,或者未提供新的Rotation实例(如果未提供)。

static Cesium.Rotation.unpackInterpolationResult (array, sourceArray, firstIndex , lastIndex , result ) Rotation

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