Description
First 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 Q1=nx sin(A/2).
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Q1() As Double
|
[C#] |
---|
public double Q1 {get; set;}
|
[Managed C++] |
---|
public: __property double get_Q1(); public: __property void set_Q1(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Q1(
double * pQ1
);
public: HRESULT put_Q1(
double Q1
);
|
[Java] |
---|
public double getQ1();
public void setQ1(
double
);
|
See Also