|
Britbot
|
Calculates a new vector perpendicular to the given one it simply rotates 90 degrees anti clockwise.
Definition at line 252 of file HeadingVector.cs. {
//like multiplying by -1
return new HeadingVector {X = this.Y, Y = -this.X};
}
|
1.7.6.1