Class EdgeEndBundleStar
- java.lang.Object
-
- org.locationtech.jts.geomgraph.EdgeEndStar
-
- org.locationtech.jts.operation.relate.EdgeEndBundleStar
-
public class EdgeEndBundleStar extends EdgeEndStar
An ordered list ofEdgeEndBundle
s around aRelateNode
. They are maintained in CCW order (starting with the positive x-axis) around the node for efficient lookup and topology building.- Version:
- 1.7
-
-
Constructor Summary
Constructors Constructor Description EdgeEndBundleStar()
Creates a new empty EdgeEndBundleStar
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
insert(EdgeEnd e)
Insert a EdgeEnd in order in the list.-
Methods inherited from class org.locationtech.jts.geomgraph.EdgeEndStar
computeLabelling, findIndex, getCoordinate, getDegree, getEdges, getNextCW, isAreaLabelsConsistent, iterator, print, toString
-
-
-
-
Method Detail
-
insert
public void insert(EdgeEnd e)
Insert a EdgeEnd in order in the list. If there is an existing EdgeStubBundle which is parallel, the EdgeEnd is added to the bundle. Otherwise, a new EdgeEndBundle is created to contain the EdgeEnd.- Specified by:
insert
in classEdgeEndStar
- Parameters:
e
- EdgeEnd
-
-