Britbot
override bool Britbot.HeadingVector.Equals ( object  obj) [inline]

Check if the two objects are the same.

Parameters:
objOther object to compare to
Returns:
true if equal and false otherwise

Definition at line 328 of file HeadingVector.cs.

        {
            if (object.ReferenceEquals(null, obj))
                return false;
            if (object.ReferenceEquals(this, obj))
                return true;
            if (obj.GetType() != this.GetType())
                return false;
            return Equals((HeadingVector) obj);
        }