Transform.Rotate Method

SFML.Net

TransformRotate Method
Overload List
  Name Description
Public method Rotate(Single)
Combine the current transform with a rotation.
Public method Rotate(Single, Vector2f)
Combine the current transform with a rotation. The center of rotation is provided for convenience as a second argument, so that you can build rotations around arbitrary points more easily (and efficiently) than the usual Translate(-center); Rotate(angle); Translate(center).
Public method Rotate(Single, Single, Single)
Combine the current transform with a rotation. The center of rotation is provided for convenience as a second argument, so that you can build rotations around arbitrary points more easily (and efficiently) than the usual Translate(-center); Rotate(angle); Translate(center).
Top
See Also