Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 459 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 459 Bytes

Graham scan convex hull algorithm

from Computational Geometry: Algorithms and Applications book

Demo

var convexHull = require('graham-scan-convex-hull');

var coords = [
    [0, 1],
    [2, 0],
    [3, 1],
    [2, 2],
    [2, 1]
]

console.log(convexHull(coords));
// prints [[0, 1],[2, 0],[3, 1],[2, 2]]