A JavaScript port of qhull.
Via npm:
npm install qhull
Here is an example showing how to compute the convex hull of a set of points:
console.log(require("qhull")([[0, 0], [10, 0], [0, 10], [10, 10], [5, 5]]));
Prints:
[ [ 1, 0 ], [ 2, 0 ], [ 3, 1 ], [ 3, 2 ] ]
require("qhull")(points)This function computes the n-dimensional convex hull of a collection of points.
points is an array of length n-arrays of pointsReturns the convex hull of points represented by an array of facets each encoded as indices into points.
Currently, the library weighs in at around 3MB unminified. Patches welcome!
QHull is (c)1993-2013 C.B. Barber (See COPYING.txt)
JavaScript port by Mikola Lysenko, 2013