copyInternal method

LinearRing copyInternal()
override

An internal method to copy subclass-specific geometry data.

@return a copy of the target geometry object.

Implementation

LinearRing copyInternal() {
  return new LinearRing.fromSequence(points.copy(), geomFactory);
}