copy method

Convenience method which provides a standard way of copying {@link CoordinateSequence}s @param seq the sequence to copy @return a deep copy of the sequence

Implementation

CoordinateSequence copy(CoordinateSequence seq) {
  return seq.copy();
}