Vector2u Constructor

SFML.Net

Vector2u Constructor
Construct the vector from its coordinates

Namespace: SFML.System
Assembly: sfmlnet-system-2 (in sfmlnet-system-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Vector2u(
	uint x,
	uint y
)
Public Sub New ( 
	x As UInteger,
	y As UInteger
)
public:
Vector2u(
	unsigned int x, 
	unsigned int y
)
new : 
        x : uint32 * 
        y : uint32 -> Vector2u

Parameters

x
Type: SystemUInt32
X coordinate
y
Type: SystemUInt32
Y coordinate
See Also