Computes the convex hull of a given set of points using the Quick Hull algorithm.
npm install quick-hull-2dnode-quick-hull-2d
==================
Computes the convex hull of a given set of points using the Quick Hull algorithm.
``javascript
var qh = require("quick-hull-2d")
var points = [ [-1,0], [1,0], [0,1], [0,0.5] ]
var hull = qh(points)
`
http://andrewseidl.github.io/node-quick-hull-2d/visualizer/
npm install quick-hull-2d