Transform.Scale Method (Single, Single)

SFML.Net

TransformScale Method (Single, Single)
Combine the current transform with a scaling.

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public void Scale(
	float scaleX,
	float scaleY
)
Public Sub Scale ( 
	scaleX As Single,
	scaleY As Single
)
public:
void Scale(
	float scaleX, 
	float scaleY
)
member Scale : 
        scaleX : float32 * 
        scaleY : float32 -> unit 

Parameters

scaleX
Type: SystemSingle
Scaling factor on the X axis
scaleY
Type: SystemSingle
Scaling factor on the Y axis
See Also