Description
Converts the supplied central body fixed vector into the body fixed coordinate system and returns the vector 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 ConvertCBFCartesianToBodyCartesianArray( _
ByVal xCbf As Double, _
ByVal yCbf As Double, _
ByVal zCbf As Double _
) As System.Array
|
| [C#] |
|---|
public System.Array ConvertCBFCartesianToBodyCartesianArray( double xCbf, double yCbf, double zCbf );
|
| [Managed C++] |
|---|
public: System::Array ConvertCBFCartesianToBodyCartesianArray( double xCbf, double yCbf, double zCbf );
|
| [Java] |
|---|
public Object[] convertCBFCartesianToBodyCartesianArray( double xCbf, double yCbf, double zCbf );
|
| [Unmanaged C++] |
|---|
public: HRESULT ConvertCBFCartesianToBodyCartesianArray( double xCbf, double yCbf, double zCbf, SAFEARRAY ** Array );
|
Parameters
See Also