Nexus.Normal3D.LengthSquared C# (CSharp) Method

LengthSquared() public method

public LengthSquared ( ) : float
return float
        public float LengthSquared()
        {
            return (((this.X * this.X) + (this.Y * this.Y)) + (this.Z * this.Z));
        }