Vector2i Constructor

SFML.Net

Vector2i 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 Vector2i(
	int x,
	int y
)
Public Sub New ( 
	x As Integer,
	y As Integer
)
public:
Vector2i(
	int x, 
	int y
)
new : 
        x : int * 
        y : int -> Vector2i

Parameters

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