Description
The velocity magnitude. Uses Rate Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property InertialVelocity() As Double
|
[C#] |
---|
public double InertialVelocity {get; set;}
|
[Managed C++] |
---|
public: __property double get_InertialVelocity(); public: __property void set_InertialVelocity(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_InertialVelocity(
double * pVal
);
public: HRESULT put_InertialVelocity(
double newVal
);
|
[Java] |
---|
public double getInertialVelocity();
public void setInertialVelocity(
double
);
|
[Python - STK API] |
---|
@property
def InertialVelocity(self) -> float:
@InertialVelocity.setter
def InertialVelocity(self, newVal:float) -> None:
|
See Also