Accord.Math.Vector3.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 Vector3 )
            {
                return Equals( (Vector3) obj );
            }
            return false;
        }

Same methods

Vector3::Equals ( Vector3 vector ) : bool