CircularBuffer Add VertexType  Method Delta Engine Documentation
Adds a short list of vertices (a quad or precomputed vertices for Particles), indices can be null for lines or when indices should be computed automatically for quads (0,1,2,0,2,3). View code on GitHub

Namespace: DeltaEngine.Graphics
Assembly: DeltaEngine.Graphics (in DeltaEngine.Graphics.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void Add<VertexType>(
	Image texture,
	VertexType[] vertices,
	short[] indices = null,
	int numberOfVerticesUsed = 0,
	int numberOfIndicesUsed = 0
)
where VertexType : struct, new(), Vertex

Parameters

texture
Type: DeltaEngine.Content Image
vertices
Type:  VertexType 
indices (Optional)
Type:  System Int16 
numberOfVerticesUsed (Optional)
Type: System Int32
numberOfIndicesUsed (Optional)
Type: System Int32
Type Parameters

VertexType
See Also