Rotation()
表示一个
Packable
数,其总是向最短的旋转角度插值。
这个对象从不直接使用,而是传递给SampledProperty
的构造函数来表示一个二维的旋转角度。
示例:
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));
// 在time2时获得的值将等于355度,而不是175度
// (相反,如果您构造一个SampledProperty(Number),就会得到这样的结果)。
// 注意,实际的返回值是弧度,而不是角度。
property.getValue(time2);
参考:
成员变量
用于将对象打包到数组中的元素数。
内置方法
staticCesium.Rotation.convertPackedArrayForInterpolation(packedArray, startingIndex, lastIndex, result)
将打包的数组转换为适合插值的形式。
Name | Type | Default | Description |
---|---|---|---|
packedArray |
Array.<Number> | 打包的数组。 | |
startingIndex |
Number |
0
|
optional 要转换的第一个元素的索引。 |
lastIndex |
Number |
packedArray.length
|
optional 最后要转换的元素的索引。 |
result |
Array.<Number> | 存出结果的对象。 |
将提供的实例存储到提供的数组中。
Name | Type | Default | Description |
---|---|---|---|
value |
Rotation | 要打包的值。 | |
array |
Array.<Number> | 要存储到的数组。 | |
startingIndex |
Number |
0
|
optional 要打包的元素将在数组中的位置。 |
返回值:
打包到的数组。
从打包的数组中检索实例。
Name | Type | Default | Description |
---|---|---|---|
array |
Array.<Number> | 打包的数组。 | |
startingIndex |
Number |
0
|
optional 实例在数组中的位置。 |
result |
Rotation | optional 存储结果的对象。 |
返回值:
修改后的结果参数;如果未提供,则为新的Rotation实例。
staticCesium.Rotation.unpackInterpolationResult(array, sourceArray, firstIndex, lastIndex, result) → Rotation
从使用
Rotation.convertPackedArrayForInterpolation
转换的打包数组中检索实例。
Name | Type | Default | Description |
---|---|---|---|
array |
Array.<Number> | 先前打包用于插值的打包的数组。 | |
sourceArray |
Array.<Number> | 原始打包数组。 | |
firstIndex |
Number |
0
|
optional 要转换的第一个元素的索引。 |
lastIndex |
Number |
packedArray.length
|
optional 最后要转换的元素的索引。 |
result |
Rotation | optional 存出结果的对象。 |
返回值:
修改后的结果参数;如果未提供,则为新的Rotation实例。