Quaternion.X Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
ทํางานร่วมกับเราใน GitHub
แหล่งที่มาสำหรับเนื้อหานี้สามารถพบได้บน GitHub ซึ่งคุณยังสามารถสร้างและตรวจสอบปัญหาและคำขอดึงข้อมูลได้ สำหรับข้อมูลเพิ่มเติม ให้ดูคู่มือผู้สนับสนุนของเรา