本文整理匯總了C#中Microsoft.Xna.Framework.Quaternion.Length方法的典型用法代碼示例。如果您正苦於以下問題:C# Quaternion.Length方法的具體用法?C# Quaternion.Length怎麽用?C# Quaternion.Length使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Microsoft.Xna.Framework.Quaternion
的用法示例。
在下文中一共展示了Quaternion.Length方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetAxisAngle
/// <summary>
/// Computes the axis of rotation and angle in radian of the quaternion q.
/// </summary>
/// <param name="q"></param>
/// <param name="axis"></param>
/// <param name="angle"></param>
public static void GetAxisAngle(Quaternion q, out Vector3 axis, float angle)
{
float scale = q.Length();
axis.X = q.X / scale;
axis.Y = q.Y / scale;
axis.Z = q.Z / scale;
angle = (float)Math.Acos(q.W) * 2;
}
示例2: Length
public void Length()
{
Quaternion q1 = new Quaternion(1, 2, 3, 4);
Compare(5.477226f,q1.Length());
}