R3.Geometry.VectorND.Normalize C# (CSharp) 메소드

Normalize() 공개 메소드

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