rotate_at method

rotate_at

Rotates the matrix by the specified angle around the specified point.

def rotate_at(self, angle, point):
    ...
ParameterTypeDescription
anglefloatThe angle of rotation in degrees.
pointaspose.pydrawing.PointFThe point to rotate around.

rotate_at

Rotates the matrix by the specified angle around the specified point in the specified order.

def rotate_at(self, angle, point, order):
    ...
ParameterTypeDescription
anglefloatThe angle of rotation in degrees.
pointaspose.pydrawing.PointFThe point to rotate around.
orderSvgMatrixOrderThe order in which rotation is applied.

See Also