Provides access to members that control TIN triangle enumerators.
Members
Name | Description | |
---|---|---|
Next | Gets next triangle elements. | |
NextTriangleStrip | Gets next triangle strip. | |
NextTriangleStripIndices | Gets next triangle strip indices. | |
QueryNext | Queries next triangle elements. | |
QueryNextAsWKSPointZs | Queries next triangle element as a WKS point with z values. | |
QueryNextAsWKSPointZs2 | Queries next triangle element as a WKS point with z values. | |
Reset | Resets the enumerators. |
IEnumTinTriangle.Next Method
Gets next triangle elements.
Public Function Next ( _
) As ITinTriangle
public ITinTriangle Next (
);
IEnumTinTriangle.NextTriangleStrip Method
Gets next triangle strip.
Public Function NextTriangleStrip ( _
ByVal maxSize As Integer _
) As ITinNodeArray
public ITinNodeArray NextTriangleStrip (
int maxSize
);
IEnumTinTriangle.NextTriangleStripIndices Method
Gets next triangle strip indices.
Public Function NextTriangleStripIndices ( _
ByVal maxSize As Integer _
) As ILongArray
public ILongArray NextTriangleStripIndices (
int maxSize
);
IEnumTinTriangle.QueryNext Method
Queries next triangle elements.
Public Sub QueryNext ( _
ByVal pTriangle As ITinTriangle _
)
public void QueryNext (
ITinTriangle pTriangle
);
IEnumTinTriangle.QueryNextAsWKSPointZs Method
Queries next triangle element as a WKS point with z values.
Public Sub QueryNextAsWKSPointZs ( _
ByRef pPi As WKSPointZ, _
ByRef pPj As WKSPointZ, _
ByRef pPk As WKSPointZ, _
ByRef pbIsEnd As Boolean _
)
public void QueryNextAsWKSPointZs (
ref WKSPointZ pPi,
ref WKSPointZ pPj,
ref WKSPointZ pPk,
ref bool pbIsEnd
);
IEnumTinTriangle.QueryNextAsWKSPointZs2 Method
Queries next triangle element as a WKS point with z values.
Public Sub QueryNextAsWKSPointZs2 ( _
ByRef pTriangleIndex As Integer, _
ByRef pPi As WKSPointZ, _
ByRef pPj As WKSPointZ, _
ByRef pPk As WKSPointZ, _
ByRef pbIsEnd As Boolean _
)
public void QueryNextAsWKSPointZs2 (
ref int pTriangleIndex,
ref WKSPointZ pPi,
ref WKSPointZ pPj,
ref WKSPointZ pPk,
ref bool pbIsEnd
);
IEnumTinTriangle.Reset Method
Resets the enumerators.
Public Sub Reset ( _
)
public void Reset (
);
Classes that implement IEnumTinTriangle
Classes | Description |
---|---|
TinTriangleEnumerator | The Esri TinTriangleEnumerator component. |