LengthSquared() 공개 메소드

Computes the squared length of the quaternion.
public LengthSquared ( ) : float
리턴 float
예제 #1
0
 public static void Validate(this Quaternion q)
 {
     if (IsInvalid(q.LengthSquared()))
     {
         throw new NotFiniteNumberException("Invalid value.");
     }
 }