Description
Converts the supplied central body fixed vector into Vehicle Vertical Local Horizontal (VVLH) coordinates. The Z axis is inward along the radial, the Y axis is in the direction of the cross product of the velocity as measured in the central body inertial frame and the position and Y axis is in the direction of motion and constructed as Y x Z. The vector is returned as an array of length 3 where the x component is array(0), y component is array(1), and z component is array(2). All values in meters.
Syntax
| [Visual Basic .NET] |
|---|
Public Function ConvertCBFCartesianToVVLHCartesianArray( _
ByVal xCbf As Double, _
ByVal yCbf As Double, _
ByVal zCbf As Double _
) As System.Array
|
| [C#] |
|---|
public System.Array ConvertCBFCartesianToVVLHCartesianArray( double xCbf, double yCbf, double zCbf );
|
| [Managed C++] |
|---|
public: System::Array ConvertCBFCartesianToVVLHCartesianArray( double xCbf, double yCbf, double zCbf );
|
| [Java] |
|---|
public Object[] convertCBFCartesianToVVLHCartesianArray( double xCbf, double yCbf, double zCbf );
|
| [Unmanaged C++] |
|---|
public: HRESULT ConvertCBFCartesianToVVLHCartesianArray( double xCbf, double yCbf, double zCbf, SAFEARRAY ** Array );
|
Parameters
See Also