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

returns the length of the vector (as a double) might be used to normalize vectors for some computation

Returns:
the length of the vector

Definition at line 275 of file HeadingVector.cs.

        {
            return Math.Sqrt(NormSquared());
        }