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。