This document is archived and information here might be outdated.  Recommended version.


ITinEdge.GetNextCW Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IT > ITinEdge Interface > ITinEdge.GetNextCW Method
ArcGIS Developer Help

ITinEdge.GetNextCW Method

Returns the edge beginning at the ToNode of the specified edge.

[Visual Basic .NET]
Public Function GetNextCW ( _
) As ITinEdge
[C#]
public ITinEdge GetNextCW (
);
[C++]
HRESULT GetNextCW(
void
);

Product Availability

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

Description

Returns the next edge, in a neighboring triangle, that is clockwise to this edge relative to its from node. Consider the from node the center hub of a bicycle wheel and edges incident to it spokes. GetNextCW returns the next spoke (edge) clockwise.

This member is useful when you need to circle around nodes.

If the from node of an edge is one of the TIN's super nodes, GetNextCW will return 'Nothing' (a null pointer) when there is no next edge due to the fact the absolute boundary has been reached.

See Also

ITinEdge Interface