VelocityVectorProperty

new SuperMap3D.VelocityVectorProperty(position, normalize)

一个{@link属性},根据所提供的PositionProperty的速度求值为一个Cartesian3向量。
Name Type Default Description
position Property optional 用于计算速度的位置属性。
normalize Boolean true optional 是否将计算出的速度矢量标准化。
Example:
//Create an entity with a billboard rotated to match its velocity.
var position = new SuperMap3D.SampledProperty();
position.addSamples(...);
var entity = viewer.entities.add({
  position : position,
  billboard : {
    image : 'image.png',
    alignedAxis : new SuperMap3D.VelocityVectorProperty(position, true) // alignedAxis must be a unit vector
  }
}));

Members

readonlydefinitionChanged : Event

获取当此属性的定义发生变化时引发的事件。

readonlyisConstant : Boolean

获取表示该属性是否为常量的值。

normalize : Boolean

获取或设置此属性产生的向量是否将被标准化。

position : Property

获取或设置用于计算速度矢量的位置属性。

Methods

equals(other)Boolean

将此属性与所提供的属性进行比较,如果相等则返回true,否则返回 false。
Name Type Description
other Property optional 一个属性。
Returns:
如果相等则返回true,否则返回 false。

getValue(time, result)Cartesian3

获取指定时间的属性值。
Name Type Description
time JulianDate optional 检索值的时间。
result Cartesian3 optional 要存储数值的对象,如果省略,则会创建一个新实例并返回。
Returns:
修改后的结果参数,或一个新实例(如果未提供结果参数)。