Instantiates a new mesh triangle.

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

Syntax

C#
public MeshTriangle(
	int vertex1,
	int vertex2,
	int vertex3
)
Visual Basic (Declaration)
Public Sub New ( _
	vertex1 As Integer, _
	vertex2 As Integer, _
	vertex3 As Integer _
)
Visual C++
public:
MeshTriangle(
	int vertex1, 
	int vertex2, 
	int vertex3
)

Parameters

vertex1
Type: System..::.Int32
The index of the first vertex.
vertex2
Type: System..::.Int32
The index of the second vertex.
vertex3
Type: System..::.Int32
The index of the third vertex.

Remarks

The indices are sorted so that the smallest index comes first.

See Also