rotate method

rotate

Applies clockwise rotation by angle to this Matrix in default (Prepend) order.

def rotate(self, angle):
    ...
ParameterTypeDescription
anglefloatThe angle.

rotate

Applies clockwise rotation by angle to this Matrix in order specified by matrix_order.

def rotate(self, angle, matrix_order):
    ...
ParameterTypeDescription
anglefloatThe angle.
matrix_orderaspose.pydrawing.drawing2d.MatrixOrderThe order.

See Also