Rotate this matrix by an amount. The default order is to prepend the rotation.
Syntax

[C#]

void Rotate(double angle);
void Rotate(double angle, MatrixOrder order);

[Visual Basic]

Sub Rotate(angle As Double)
Sub Rotate(angle As Double, order As MatrixOrder)
Params
Name Description
angle The angle of rotation in degrees.
order Whether the passed matrix should be appended (this * transform) or prepended (transform * this).
Notes

None.

Example

None.