Britbot
bool Britbot.HeadingVector.Equals ( HeadingVector  other) [inline, protected]

Enumerates the location determined by the direction if this heading vector and the pivot supplied.

Parameters:
originPivotThe pivot to refer to
Returns:
a collection of the relevant locations

Check if the two objects are the same

Parameters:
otherOther HeadingVector to compare to
Returns:
true if equal and false otherwise

Definition at line 318 of file HeadingVector.cs.

        {
            return X == other.X && Y == other.Y;
        }