Builds a high-level mesh from a list of unordered triangles (TIN).

Namespace:  ceometric.ComputationalGeometry
Assembly:  ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.0.0)

Syntax

C#
public void BuildMesh(
	List<Triangle> unorderedTriangles,
	int relevantDecimals,
	bool includeDegenerateTriangles
)
Visual Basic (Declaration)
Public Sub BuildMesh ( _
	unorderedTriangles As List(Of Triangle), _
	relevantDecimals As Integer, _
	includeDegenerateTriangles As Boolean _
)
Visual C++
public:
void BuildMesh(
	List<Triangle^>^ unorderedTriangles, 
	int relevantDecimals, 
	bool includeDegenerateTriangles
)

Parameters

unorderedTriangles
Type: System.Collections.Generic..::.List<(Of <(Triangle>)>)
A list of unordered triangles.
relevantDecimals
Type: System..::.Int32
The relevant decimals to consider two vertex positions identical. Vertices will be rounded to the number of relevant decimals.
includeDegenerateTriangles
Type: System..::.Boolean
True if degenerate triangles shall be part of the mesh, flase otherwise.

See Also