This document is archived and information here might be outdated. Recommended version. |
Gets next edge index in triangle.
[Visual Basic .NET]
Public Function GetNextEdgeIndexInTriangle ( _
ByVal edgeIndex As Integer _
) As Integer
[C#]
public int GetNextEdgeIndexInTriangle (
int edgeIndex
);
[C++]
HRESULT GetNextEdgeIndexInTriangle(
long edgeIndex
);
[C++] Parameters edgeIndex [in]
edgeIndex is a parameter of type long
Returns the index for the next edge in a triangle relative to a given edge. Since nodes and edges are oriented clockwise in a TIN the next edge is clockwise to the given edge.
Use this method instead of ITinEdge.GetNextInTriangle when inside a loop.