[]
Applies a clockwise rotation to this Matrix object around the point specified in the point parameter, and by prepending the rotation
public void RotateAt(Coordinate point, float angle)
Public Sub RotateAt(point As Coordinate, angle As Single)
| Type | Name | Description |
|---|---|---|
| Coordinate | point | A Coordinate class that represents the center of the rotation. |
| float | angle | The angle (extent) of the rotation. |
Applies a clockwise rotation to this Matrix object around the point specified in the point parameter, and by prepending the rotation
public void RotateAt(Coordinate point, float angle, TransformOrder order)
Public Sub RotateAt(point As Coordinate, angle As Single, order As TransformOrder)
| Type | Name | Description |
|---|---|---|
| Coordinate | point | A Coordinate class that represents the center of the rotation. |
| float | angle | The angle (extent) of the rotation. |
| TransformOrder | order | A TransformOrder enumeration that specifies the order (append or prepend) in which the rotation is applied to this Matrix object. |