Description
The first element of the vector component of the quaternion representing orientation between two sets of axes. This quaternion is from the reference axes to the body frame; if n and A are the axis and angle of rotation, respectively, then QX = nx sin(A/2). Dimensionless.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property QX() As Double
|
[C#] |
---|
public double QX {get; set;}
|
[Managed C++] |
---|
public: __property double get_QX(); public: __property void set_QX(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_QX(
double * pVal
);
public: HRESULT put_QX(
double vQX
);
|
[Java] |
---|
public double getQX();
public void setQX(
double
);
|
[Python - STK API] |
---|
@property
def QX(self) -> float:
@QX.setter
def QX(self, vQX:float) -> None:
|
See Also