getNodedSubstrings static method

List getNodedSubstrings(
  1. List segStrings
)

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

@param segStrings a List of NodedSegmentStrings @return a List of NodedSegmentStrings representing the substrings

Implementation

static List getNodedSubstrings(List segStrings) {
  List resultEdgelist = [];
  getNodedSubstrings2(segStrings, resultEdgelist);
  return resultEdgelist;
}