Name | Type | Default | Description |
---|---|---|---|
position
|
PositionProperty | 可选 用于计算速度的位置属性。 | |
normalize
|
Boolean |
true
|
可选 是否对计算的速度向量进行归一化。 |
Example:
//Create an entity with a billboard rotated to match its velocity.
const position = new Cesium.SampledProperty();
position.addSamples(...);
const entity = viewer.entities.add({
position : position,
billboard : {
image : 'image.png',
alignedAxis : new Cesium.VelocityVectorProperty(position, true) // alignedAxis must be a unit vector
}
}));
Members
readonly definitionChanged : Event
获取每当此属性的定义更改时引发的事件。
获取一个值,该值指示此属性是否为常量。
获取或设置此属性生成的向量是否会被规范化。
position : Property |undefined
获取或设置用于计算速度矢量的位置属性。
Methods
将此属性与提供的属性进行比较,如果相等则返回
true
,否则返回
false
。
Name | Type | Description |
---|---|---|
other
|
Property | 可选 其他属性。 |
Returns:
如果左右相等,则为
true
,否则为
false
。
getValue ( time , result ) → Cartesian3
在提供的时间获取属性的值。
Name | Type | Description |
---|---|---|
time
|
JulianDate | 可选 检索值的时间。 |
result
|
Cartesian3 | 可选 将值存储到其中的对象,如果省略,则创建并返回一个新实例。 |
Returns:
如果未提供结果参数,则修改结果参数或新实例。