voronoi
voronoi copied to clipboard
A C implementation for creating 2D voronoi diagrams
Matthias, Thanks for the excellent code. I've used it in an open source roundness checker: https://github.com/zdavkeos/balyrond I have thrown a lot of terrible data at it, and it and voronoi...
Love your library, use it heavily. Been finding however that the algorithm generates many tiny edges. The visualization attached places transparent circles on each unique vertex in the mesh and...
Hi Matthias, thank you very much for this lovely code. It is very fast and outperforms the two Voronoi implementations available in Matlab by an order of magnitude. For that...
Hello author, while running this polygon file, I found that it keeps creating memory until it runs out of computer memory. Some other files will also encounter similar problems. #include...
Love your library and it is very efficient. I run the `jcv_diagram_generate` using Double floating point precision from the following points (On ubuntu 22.04, Intel(R) Core(TM) i7-10510U CPU @ 1.80GHz...
Consider adding a Wasm support (e.g. via Emscripten) so your awesomeness could be used on web.
How to get the information of the voronoi vertices and which voronoi cells it is sharing with ? I want to mean in general a vertex is shared by 3...
Now, to get access to a separate site by its index, you need to either make a separate array sorted by site indexes, or use a chart search. Maybe there...
The input yields edges that goes through the entire diagram, running from 0 y to 2048 (max y). Several of these edges only have 2 corners and those corners only...
Hi, is there any simple method to enable the library to support clip by nonconvex boundary? I tested when use concave polygon as clip polygon, the result is blank.