Britbot
double Britbot.HeadingVector.NormSquared ( ) [inline]

Returns the square of the vector's length might be used to normalize vectors for some computation.

Returns:
the length of the vector squared

Definition at line 265 of file HeadingVector.cs.

        {
            return X * X + Y * Y;
        }