Quaternion.W 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得四元數的 W 元件。
public:
property double W { double get(); void set(double value); };
public double W { get; set; }
member this.W : double with get, set
Public Property W As Double
屬性值
四元數的 W 元件。
範例
//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
備註
預設值為 0。