| TriangleMesh Constructor (Int32, Int32) |
Initializes a new instance of the
TriangleMesh class with the specified
initial capacity.
Namespace: DigitalRune.Geometry.MeshesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public TriangleMesh(
int verticesCapacity,
int indicesCapacity
)
Public Sub New (
verticesCapacity As Integer,
indicesCapacity As Integer
)
public:
TriangleMesh(
int verticesCapacity,
int indicesCapacity
)
new :
verticesCapacity : int *
indicesCapacity : int -> TriangleMesh
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 See Also