1.0.2 • Published 3 years ago

irregular-voronoi v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

irregular-voronoi

irregular-voronoi makes it dead simple to create voronoi like diagrams constrained to irregular polygons. It ensures that no returned polygon is a MultiPolygon. That each point is in only Polygon. And that all polygons contain a point.

npm.io

Usage

const irregularVoronoi = require('irrgular-voronoi');

const polygon = { ... };
const points = [ ... ];

const result = irregularVoronoi(polygon, points);