closeRing method

void closeRing()

Ensure this coordList is a ring, by adding the start point if necessary

Implementation

void closeRing() {
  if (_backingList.length > 0) {
    Coordinate duplicate = _backingList[0].copy();
    addCoord(duplicate, false);
  }
}