Britbot

Calculates a new vector perpendicular to the given one it simply rotates 90 degrees anti clockwise.

Returns:
A vector perpendicular to the given vector

Definition at line 252 of file HeadingVector.cs.

        {
            //like multiplying by -1
            return new HeadingVector {X = this.Y, Y = -this.X};
        }