Vector3f Constructor

SFML.Net

Vector3f 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 Vector3f(
	float x,
	float y,
	float z
)
Public Sub New ( 
	x As Single,
	y As Single,
	z As Single
)
public:
Vector3f(
	float x, 
	float y, 
	float z
)
new : 
        x : float32 * 
        y : float32 * 
        z : float32 -> Vector3f

Parameters

x
Type: SystemSingle
X coordinate
y
Type: SystemSingle
Y coordinate
z
Type: SystemSingle
Z coordinate
See Also