包详细信息

monotone-chain-convex-hull

image-js111.9kMIT1.1.0

Monotone Chain Convex Hull algorithm

convex, hull

自述文件

monotone-chain-convex-hull

NPM version 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]]

API Documentation

License

MIT

更新日志

Changelog

1.1.0 (2022-07-31)

Features

Bug Fixes

  • do not sort points in-place (33aa0d2)