Constructs a new triangular face.

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

Syntax

C#
public Tri(
	int v1,
	int v2,
	int v3
)
Visual Basic (Declaration)
Public Sub New ( _
	v1 As Integer, _
	v2 As Integer, _
	v3 As Integer _
)
Visual C++
public:
Tri(
	int v1, 
	int v2, 
	int v3
)

Parameters

v1
Type: System..::.Int32
The index of the first vertex.
v2
Type: System..::.Int32
The index of the second vertex.
v3
Type: System..::.Int32
The index of the third vertex.

See Also