Accord.Math.Vector4.Equals C# (CSharp) 메소드

Equals() 공개 메소드

Tests whether the vector equals to the specified object.
public Equals ( Object obj ) : bool
obj Object The object to test equality with.
리턴 bool
        public override bool Equals( Object obj )
        {
            if ( obj is Vector4 )
            {
                return Equals( (Vector4) obj );
            }
            return false;
        }

Same methods

Vector4::Equals ( Vector4 vector ) : bool