[C#]
void Rotate(double angle); void Rotate(double angle, double anchorX, double anchorY);
[Visual Basic]
Sub Rotate(angle As Double) Sub Rotate(angle As Double, anchorX As Double, anchorY As Double)
This method rotates the world space about the origin. The angle is specified in degrees clockwise.
This method rotates the world space about a locked anchor point. The angle is specified in degrees clockwise.
None.