Transform.Scale Method

SFML.Net

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