Click or drag to resize
DigitalRuneTriangleMesh Constructor (Int32, Int32)
Initializes a new instance of the TriangleMesh class with the specified initial capacity.

Namespace: DigitalRune.Geometry.Meshes
Assembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax
public TriangleMesh(
	int verticesCapacity,
	int indicesCapacity
)

Parameters

verticesCapacity
Type: SystemInt32
The number of vertices that the new triangle mesh can initially store.
indicesCapacity
Type: SystemInt32
The number of indices that the new triangle mesh can initially store.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionverticesCapacity or indicesCapacity is less than 0.
See Also