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

checks if two vectors are not the same: compares both entries

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

Definition at line 361 of file HeadingVector.cs.

        {
            return !(hv1 == hv2);
        }