remove method

void remove(
  1. TaggedLineString line,
  2. int start,
  3. int end
)

Remove the segs in the section of the line @param line @param pts @param sectionStartIndex @param sectionEndIndex

Implementation

void remove(TaggedLineString line, int start, int end) {
  for (int i = start; i < end; i++) {
    TaggedLineSegment seg = line.getSegment(i);
    inputIndex.remove(seg);
  }
}