Quaternion.X Property

Definition

Gets the X component of the quaternion.

public:
 property double X { double get(); void set(double value); };
public double X { get; set; }
member this.X : double with get, set
Public Property X As Double

Property Value

The X component of the quaternion.

Examples

//convert to quaternion and update display
try
{
    Quaternion tempQuaternion = new Quaternion(axis, angle);
    QuaternionWText.Text = tempQuaternion.W.ToString();
    QuaternionXText.Text = tempQuaternion.X.ToString();
    QuaternionYText.Text = tempQuaternion.Y.ToString();
    QuaternionZText.Text = tempQuaternion.Z.ToString();
}
catch
{
    MessageBox.Show("Set non-null values for the axis Vector3D.");
}
'convert to quaternion and update display
Try
    Dim tempQuaternion As New Quaternion(axis, angle)
    QuaternionWText.Text = tempQuaternion.W.ToString()
    QuaternionXText.Text = tempQuaternion.X.ToString()
    QuaternionYText.Text = tempQuaternion.Y.ToString()
    QuaternionZText.Text = tempQuaternion.Z.ToString()
Catch
    MessageBox.Show("Set non-null values for the axis Vector3D.")
End Try

Remarks

The default value is 0.

Applies to