Tests if the mesh edge has a specific vertex index.

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

Syntax

C#
public bool HasVertex(
	int index
)
Visual Basic (Declaration)
Public Function HasVertex ( _
	index As Integer _
) As Boolean
Visual C++
public:
bool HasVertex(
	int index
)

Parameters

index
Type: System..::.Int32
The vertex index.

Return Value

Returns true if index is one of the vertex indices of the mesh edge, false otherwise.

See Also