1 
2 void
Rotate(float angle)3 Rotate (float angle)
4 {
5     float mag = (angle < 0) ? -angle : angle;
6 }
7