computeNodes method

void computeNodes(
  1. List inputSegStrings
)
override

Computes the noding for a collection of {@link SegmentString}s. Some Noders may add all these nodes to the input SegmentStrings; others may only add some or none at all.

@param segStrings a collection of {@link SegmentString}s to node

Implementation

void computeNodes(List inputSegStrings) {
  this.nodedSegStrings = inputSegStrings;

  for (SegmentString ss in inputSegStrings) {
    add(ss);
  }
  intersectChains();
//System.out.println("MCIndexNoder: # chain overlaps = " + nOverlaps);
}