Britbot
static double Britbot.HeadingVector.operator* ( HeadingVector  hv1,
HeadingVector  hv2 
) [inline, static]

calculates the dot product for two vectors used to check if angles are sharp or doll (if they are the correct terms)

Parameters:
hv1first vector
hv2second vector
Returns:
the scalar product

Definition at line 128 of file HeadingVector.cs.

        {
            return hv1.X * hv2.X + hv1.Y * hv2.Y;
        }