Britbot
static bool Britbot.HeadingVector.operator== ( HeadingVector  hv1,
HeadingVector  hv2 
) [inline, static]

Get a hash code for this instance. Should be use by system sorting and what not. ReSharper generated code.

Returns:
the hash code for this instance of HeadingVector

checks if two vectors are the same: compares both entries

Parameters:
hv1first vector
hv2second vector
Returns:
true if they are the same, else otherwise

Definition at line 350 of file HeadingVector.cs.

        {
            return hv1.X == hv2.X && hv1.Y == hv2.Y;
        }