A class defining a triangular face by three integer values referring to the zero-based index of vertices in a list of mesh vertices.

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

Syntax

C#
[SerializableAttribute]
public class MeshTriangle : IComparable<MeshTriangle>
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class MeshTriangle _
	Implements IComparable(Of MeshTriangle)
Visual C++
[SerializableAttribute]
public ref class MeshTriangle : IComparable<MeshTriangle^>

Remarks

The indices refer to the zero-based indices of the vertex list of a mesh. A mesh triangle also holdes three references to its mesh edges whereby each mesh edge knows its adjacent mesh triangles.

Inheritance Hierarchy

System..::.Object
  ceometric.ComputationalGeometry..::.MeshTriangle

See Also