R3.Geometry.VectorND.Normalize C# (CSharp) Method

Normalize() public method

public Normalize ( ) : bool
return bool
        public bool Normalize()
        {
            double magnitude = Abs;
            if( Tolerance.Zero( magnitude ) )
                return false;
            Divide( magnitude );
            return true;
        }