MiniQhull.jl
MiniQhull.jl copied to clipboard
A small Julia wrapper of the Qhull library
This allows to get updates for GitHub actions automatically. I have used this for my own packages, the [Trixi.jl framework](https://github.com/trixi-framework), and the [SciML organization](https://github.com/SciML). After merging this, you could also...
Hello! Not exactly an issue _per se_, but wondering if it is feasible/desirable to add a wrapper for calling the `qvoronoi` function? Also wondering the same for point clouds with...
So this library is titled `MiniQHull`, yet it does not have an obvious method for convex hull computation. Converting a convex hull method to an unconstrained Delaunay triangulation algorithm is...
Hi, I am just installing MiniQhull and everything seemed ok but once I try to perform a delaunay triangulation I get the following error ```julia > connectivity = MiniQhull.delaunay(dim, numpoints,...
Is it possible to implement the qh_findbestfacet / find_simplex function in MiniQhull? This would make it easy to do fast, linear interpolations from discrete, unstructured data points in 3 dimensions....
Some potential users are willing to use MiniQhull from Windows and presumably also from Mac OS, but the project is only tested for Linux. See this thread: https://discourse.julialang.org/t/delaunay-triangularization/36172/13 Is somebody...
Now, `delaunay` allocates the output. It would be nice to have the corresponding in-place version `delaunay!`, where the user provides the output. A part of performance reasons, the in-place version...