use of com.revolsys.geometry.edgegraph.HalfEdge in project com.revolsys.open by revolsys.
the class LineDissolver method computeResult.
private void computeResult() {
final Collection edges = this.graph.getVertexEdges();
for (final Iterator i = edges.iterator(); i.hasNext(); ) {
final HalfEdge e = (HalfEdge) i.next();
if (MarkHalfEdge.isMarked(e)) {
continue;
}
process(e);
}
this.result = this.factory.buildGeometry(this.lines);
}
Aggregations