Accord.Math.Vector4.Equals C# (CSharp) Method

Equals() public method

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

Same methods

Vector4::Equals ( Vector4 vector ) : bool