Constructs a new quad face.

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

Syntax

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

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.
v4
Type: System..::.Int32
The index of the fourth vertex.

See Also