Description
Third element of the quaternion (and of its vector part) 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 Q3=nz sin(A/2).
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Q3() As Double
|
[C#] |
---|
public double Q3 {get; set;}
|
[Managed C++] |
---|
public: __property double get_Q3(); public: __property void set_Q3(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Q3(
double * pQ3
);
public: HRESULT put_Q3(
double Q3
);
|
[Java] |
---|
public double getQ3();
public void setQ3(
double
);
|
See Also