rotate_at method

rotate_at

Applies a clockwise rotation about the specified point to this Matrix in the default (Prepend) order.

def rotate_at(self, angle, point):
    ...
ParameterTypeDescription
anglefloatThe angle.
pointPointFThe point.

rotate_at

Applies a clockwise rotation about the specified point to this Matrix in the specified order.

def rotate_at(self, angle, point, order):
    ...
ParameterTypeDescription
anglefloatThe angle.
pointPointFThe point.
orderMatrixOrderThe order.

See Also