This document is archived and information here might be outdated. Recommended version. |
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,
System.Int32* pA,
System.Int32* pB,
System.Int32* 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*
Returns the indices of the three edges that comprise the specified triangle.
They are returned from smaller index to larger in clockwise order.