Description
The magnitude of the inertial velocity vector. Uses Rate Dimension.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property Velocity() As Double
|
| [C#] |
|---|
public double Velocity {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_Velocity(); public: __property void set_Velocity(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_Velocity(
double * pVal
);
public: HRESULT put_Velocity(
double vVelocity
);
|
| [Java] |
|---|
public double getVelocity();
public void setVelocity(
double
);
|
| [Python - STK API] |
|---|
@property
def Velocity(self) -> float:
@Velocity.setter
def Velocity(self, vVelocity:float) -> None:
|
See Also