rotate_around method

rotate_around

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

def rotate_around(self, angle, pivot):
    ...
ParameterTypeDescription
anglefloatThe angle.
pivotaspose.pydrawing.PointFThe pivot point.

rotate_around

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

def rotate_around(self, angle, pivot, matrix_order):
    ...
ParameterTypeDescription
anglefloatThe angle.
pivotaspose.pydrawing.PointFThe pivot point.
matrix_orderaspose.pydrawing.drawing2d.MatrixOrderThe order.

See Also