MonotoneChainI constructor

MonotoneChainI(
  1. List<Coordinate> pts,
  2. int start,
  3. int end,
  4. Object? context,
)

Creates a new MonotoneChain based on the given array of points. @param pts the points containing the chain @param start the index of the first coordinate in the chain @param end the index of the last coordinate in the chain @param context a user-defined data object

Implementation

MonotoneChainI(this.pts, this.start, this.end, this.context);