ArcObjects Library Reference (GeoDatabase)  

ITinAdvanced2.QueryTriangleEdgeIndices Method

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

[Visual Basic .NET]
Public Sub QueryTriangleEdgeIndices ( _
    ByVal triangleIndex As Integer, _
    ByRef pA As Integer, _
    ByRef pB As Integer, _
    ByRef pC As Integer _
)
[C#]
public void QueryTriangleEdgeIndices (
    int triangleIndex,
    ref int pA,
    ref int pB,
    ref int pC
);
[C++]
HRESULT QueryTriangleEdgeIndices(
  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 edges that comprise the specified triangle.

They are returned from smaller index to larger in clockwise order.

See Also

ITinAdvanced2 Interface