This documentation is for the old version. Go to the latest Graphics Mill docs

Matrix.RotateAt Method (Single, PointF, MatrixOrder)

Applies a rotate affine transform to the matrix around the specified point.

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub RotateAt ( _
	angle As Single, _
	point As PointF, _
	order As MatrixOrder _
)
C#
public void RotateAt(
	float angle,
	PointF point,
	MatrixOrder order
)

Parameters

angle

Type: System.Single

The angle of the rotation (in degrees).
point

Type: System.Drawing.PointF

The point which is used as a center of the rotation.
order

Type: System.Drawing.Drawing2D.MatrixOrder

The order of the matrices in the multiplication operation.

Remarks

The clockwise rotation is applied. Use negative angle value to rotate counter-clockwise.

See Also

Reference