FacetSequence constructor

FacetSequence(
  1. Geometry? geom,
  2. CoordinateSequence pts,
  3. int? start,
  4. int? end,
)

Creates a new sequence of facets based on a {@link CoordinateSequence} contained in the given {@link Geometry}.

@param geom the geometry containing the facets @param pts the sequence containing the facet points @param start the index of the start point @param end the index of the end point + 1

Implementation

FacetSequence(this.geom, this.pts, this.start, this.end);