Vertex Constructor (Vector2f, Vector2f)

SFML.Net

Vertex Constructor (Vector2f, Vector2f)
Construct the vertex from its position and texture coordinates The vertex color is white.

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Vertex(
	Vector2f position,
	Vector2f texCoords
)
Public Sub New ( 
	position As Vector2f,
	texCoords As Vector2f
)
public:
Vertex(
	Vector2f position, 
	Vector2f texCoords
)
new : 
        position : Vector2f * 
        texCoords : Vector2f -> Vertex

Parameters

position
Type: SFML.SystemVector2f
Vertex position
texCoords
Type: SFML.SystemVector2f
Vertex texture coordinates
See Also