getNodedSubstrings2 static method

void getNodedSubstrings2(
  1. List segStrings,
  2. List resultEdgelist
)

Adds the noded {@link SegmentString}s which result from splitting this string at node points.

@param segStrings a List of NodedSegmentStrings @param resultEdgelist a List which will collect the NodedSegmentStrings representing the substrings

Implementation

static void getNodedSubstrings2(List segStrings, List resultEdgelist) {
  for (NodedSegmentString ss in segStrings) {
    ss.getNodeList().addSplitEdges(resultEdgelist);
  }
}