RenderTarget.Draw Method (Vertex[], PrimitiveType)

SFML.Net

RenderTargetDraw Method (Vertex, PrimitiveType)
Draw primitives defined by an array of vertices, with default render states

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
void Draw(
	Vertex[] vertices,
	PrimitiveType type
)
Sub Draw ( 
	vertices As Vertex(),
	type As PrimitiveType
)
void Draw(
	array<Vertex>^ vertices, 
	PrimitiveType type
)
abstract Draw : 
        vertices : Vertex[] * 
        type : PrimitiveType -> unit 

Parameters

vertices
Type: SFML.GraphicsVertex
Array of vertices to draw
type
Type: SFML.GraphicsPrimitiveType
Type of primitives to draw
See Also