getChains static method

List getChains(
  1. List<Coordinate> pts
)

Computes a list of the {@link MonotoneChain}s for a list of coordinates.

@param pts the list of points to compute chains for @return a list of the monotone chains for the points

Implementation

static List getChains(List<Coordinate> pts) {
  return getChainsWithContext(pts, null);
}