1.0.0 • Published 11 years ago
alpha-shape v1.0.0
alpha-shape
Computes the alpha shape of a point set.
Example
var alphaShape = require('alpha-shape')
var points = []
for(var i=0; i<10; ++i) {
points.push([Math.random(), Math.random()])
}
var cells = alphaShape(0.1, points)
console.log(cells)Install
npm i alpha-shapeAPI
var cells = require('alpha-shape')(alpha, points)
Computes the alpha shape of a point set
alphais alpha parameter for the shapepointsis a set of points in some dimension
Returns The alpha shape of the point set
License
(c) 2015 Mikola Lysenko. MIT License
1.0.0
11 years ago