Use of GeoGram and CGAL
461353349 opened this issue · 4 comments
I have some questions:
- We use CGAL not GeoGram for tet mesh generation, Is it just because of rational float?
- We use GeoGram just for quickly computing facet intersection and locating the nearest facet, Is it right?
- I notice quad mesh and hex mesh generation in your PPT, Could you tell me what library or tools to generate them?
Thanks a lot.
Hi,
I assume the "We" in 1 and 2 refers our method TetWild.
- We can also use geogram for background delaunay mesh generation.
- Yes.
- We use https://github.com/gaoxifeng/robust_hex_dominant_meshing
Yes, It refers to TetWild :)
That is to say, Delaunay Algorith is closed only if rational is enough. So TetWild use CGAL or GeoGram for tet generation has no difference. Does GeoGram support rational if using GeoGram for tet mesh generation? Or Only Splitting and orientation need rational?
If TetWild directly use gmp for rational data type, TetWild Maybe not depend on CGAL library. Is it right?
Delaunay Algorithm can be down in floating points. I don't know if geogram supports rationals. We are not using geogram with rationals. GMP rational is slower than cgal rational. But yes, we can use gmp only. For example, our 2D implementation only depends on gmp.
Thanks very much!!!