DistMesh.jl
DistMesh.jl copied to clipboard
Tetrahedral meshing of distance functions in Julia
From what I can see from the code, only 3D meshes can be constructed. Any plans for 2D?
Please make tutorial with the original DistMesh examples from http://persson.berkeley.edu/distmesh/ Can those examples be re-produced?
needs some fiddling so that the default behaviour remains unmodified. add and reproduce tests to master before
The sort call turns out to be highly suspect for certain cases, so disable. This also includes bit pack to accelerate hashing. Since sorting has no apparent benefit, directly using...
Interpolations.jl would be a good integration here.
- Non-linear - Damped - Termination Criteria (quality metrics)
- [ ] Ensure if fixed points, no sorting occurs - [ ] Set filtering value (geps) in filtering - [ ] More tests - [ ] More Docs ##...
Ideas to reduce the cache pressure during point lookup: where: - Perform initially - Perform between iterations upon some criteria being met what: - binning - KD Trees
This is, for what I can tell, not available in the Tetgen interface. However, several 2D implementations have such validation schemes. Once Delaunator is running this should be an option...
Sjk/comp