Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.09 KB

README.md

File metadata and controls

33 lines (22 loc) · 1.09 KB

monotone-chain-convex-hull

NPM version build status npm download

Monotone Chain Convex Hull algorithm.

Installation

$ npm install --save monotone-chain-convex-hull

Usage

import monotoneChainConvexHull from 'monotone-chain-convex-hull';

const result = monotoneChainConvexHull([[1, 1], [3, 0], [2, 1], [3, 2], [1, 2], [0, 2], [0, 0]]);
// result is [[0, 0], [0, 2], [3, 2], [3, 0]]

License

MIT