Transform.TransformPoint Method (Single, Single)

SFML.Net

TransformTransformPoint Method (Single, Single)
Transform a 2D point.

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Vector2f TransformPoint(
	float x,
	float y
)
Public Function TransformPoint ( 
	x As Single,
	y As Single
) As Vector2f
public:
Vector2f TransformPoint(
	float x, 
	float y
)
member TransformPoint : 
        x : float32 * 
        y : float32 -> Vector2f 

Parameters

x
Type: SystemSingle
X coordinate of the point to transform
y
Type: SystemSingle
Y coordinate of the point to transform

Return Value

Type: Vector2f
Transformed point
See Also