ArcObjects Library Reference (GeoDatabase)  

ITinAdvanced2.QueryTriangleNodeIndices Method

Gets the three nodes of the specified triangle (clockwise).

[Visual Basic .NET]
Public Sub QueryTriangleNodeIndices ( _
    ByVal triangleIndex As Integer, _
    ByRef pA As Integer, _
    ByRef pB As Integer, _
    ByRef pC As Integer _
)
[C#]
public void QueryTriangleNodeIndices (
    int triangleIndex,
    ref int pA,
    ref int pB,
    ref int pC
);
[C++]
HRESULT QueryTriangleNodeIndices(
  long triangleIndex,
  long* pA,
  long* pB,
  long* pC
);
[C++]

Parameters

triangleIndex [in]   triangleIndex is a parameter of type long pA [out]   pA is a parameter of type long pB [out]   pB is a parameter of type long pC [out]   pC is a parameter of type long

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Returns the indices of the three nodes that comprise the specified triangle.

See Also

ITinAdvanced2 Interface