computeVertexSnaps method

void computeVertexSnaps(
  1. List edges
)

Snaps segments to all vertices.

@param edges the list of segment strings to snap together

Implementation

void computeVertexSnaps(List edges) {
  for (NodedSegmentString edge0 in edges) {
    computeVertexSnapsNSS(edge0);
  }
}