what is the difference between surface_Delaunay_remeshing() and isotropic_remeshing() #8434
-
Please use the following template to help us solving your issue. Issue DetailsI am not clear what is the difference between By intuition, if a surface is isotropic remeshed, then it should satisfies the Delaunay criterion because all triangles are almost equilateral. So why CGAL differentiate the two methods? (I think I may not have a full understanding of Delaunay criterion ) Source CodeIf your issue arises by using CGAL in your own source code, please provide a minimalist example that we can compile easily to reproduce the bug. If your issue arises from using a CGAL program (demo, example, etc.), please let us know which one. Helping you solving an issue is much easier and efficient if we can reproduce it. Environment
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
More details can be found in the user manual |
Beta Was this translation helpful? Give feedback.
-
So is it possible tha by setting the parameters in |
Beta Was this translation helpful? Give feedback.
-
I guess that a smart combination of parameters, on not-too-curved surfaces, could reach a similar result. |
Beta Was this translation helpful? Give feedback.
surface_Delaunay_remeshing()
offers a lot more meshing parameters, such as approximation distance to the input and an angle bound on triangles. This method relies on the 3D tetrahedral mesh generation engine.isotropic_remeshing()
is a lighter algorithm, designed to remesh triangulated surfaces, with only an edge length criterion.More details can be found in the user manual