Description
Get the position using the Cartesian representation.
Syntax
[Visual Basic .NET] |
---|
Public Sub QueryCartesian( _
ByRef X As Double, _
ByRef Y As Double, _
ByRef Z As Double _
)
|
[C#] |
---|
public void QueryCartesian(
ref double X,
ref double Y,
ref double Z
);
|
[Managed C++] |
---|
public: void QueryCartesian(
double ^ X,
double ^ Y,
double ^ Z
);
|
[Unmanaged C++] |
---|
public: HRESULT QueryCartesian(
double * X,
double * Y,
double * Z
);
|
[Python - STK API ] |
---|
def QueryCartesian(self) -> typing.Tuple[float, float, float]:
|
Parameters
See Also