gridap / MiniQhull.jl

A small Julia wrapper of the Qhull library
Other
30 stars 9 forks source link

Implement `delaunay!`, in-place version of `delaunay` #15

Open fverdugo opened 3 years ago

fverdugo commented 3 years ago

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 would allow the user to select the container type (as long as it has the correct memory layout).

Once delaunay! is available, delaunay can be implemented by calling delaunay!.

fverdugo commented 3 years ago

Hi @kahaaga ! If you want to further contribute to the project. This would be a nice thing to have.