Quaternion.W 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 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
Property Value
The W 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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.