Matrix.RotateAt

RotateAt(float, PointF)

Applies a clockwise rotation to this Matrix around the point specified in the point parameter, and by prepending the rotation.

public void RotateAt(float angle, PointF point)
ParameterTypeDescription
angleSingleThe angle (extent) of the rotation, in degrees.
pointPointFA PointF that represents the center of the rotation.

See Also


RotateAt(float, PointF, MatrixOrder)

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

public void RotateAt(float angle, PointF point, MatrixOrder order)
ParameterTypeDescription
angleSingleThe angle of the rotation, in degrees.
pointPointFA PointF that represents the center of the rotation.
orderMatrixOrderA MatrixOrder that specifies the order (append or prepend) in which the rotation is applied.

See Also