insert method

void insert(
  1. EdgeEnd e
)

Implementation

void insert(EdgeEnd e) {
  // Assert: start point is the same
  // Assert: direction is the same
  edgeEnds.add(e);
}