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) {
  List intSegStrings = inputSegStrings;
  if (isScaled) intSegStrings = scale(inputSegStrings);
  noder.computeNodes(intSegStrings);
}