Quaternion.W 属性
定义
获取四元数的 W 分量。Gets the W component of the quaternion.
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 分量。The W component of the quaternion.
示例
//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。The default value is 0.