Universe.Physics.PrimMesher.Quat.Length C# (CSharp) Method

Length() public method

public Length ( ) : float
return float
        public float Length ()
        {
            return (float)Math.Sqrt (X * X + Y * Y + Z * Z + W * W);
        }