d3-voronoi icon indicating copy to clipboard operation
d3-voronoi copied to clipboard

Compute the Voronoi diagram of a set of two-dimensional points.

Results 4 d3-voronoi issues
Sort by recently updated
recently updated
newest added

The d3.voronoi module has the handy `voronoi.find(x,y,r)` (#17 ) method, which returns the closest site to a given point, which is very useful for a number of applications. But what...

I encountered an issue that special input data can crash **voronoi.polygons**. **Reproduce Demo** ```js var d3 = require("d3"); var width = 400; var height = 400; // change width and...

Related mbostock/d3#2401. For example: Manhattan, Chebychev, and Minovsky.

It’d be nice to be able to add a new point to an existing Voronoi diagram without having to start over from scratch. I’ve also been thinking about this divide-and-conquer...