-
The documentation says
const FT vertex_size_sq = 6 * tol / max_absolute_curv - 3 * CGAL::square(tol); and then |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @darikg, The error tolerance parameter comes directly from the mathematical formulation for the adaptive isotropic remeshing. Check the paper the CGAL's implementation is based on: https://diglib.eg.org/server/api/core/bitstreams/c4d5096e-de41-466e-9e74-83a28da64d67/content Take a look at section 3. From the assumptions mentioned in that section you can easily derive the formula. Hope that helps. |
Beta Was this translation helpful? Give feedback.
Hi @darikg,
The error tolerance parameter comes directly from the mathematical formulation for the adaptive isotropic remeshing.
Check the paper the CGAL's implementation is based on: https://diglib.eg.org/server/api/core/bitstreams/c4d5096e-de41-466e-9e74-83a28da64d67/content
Take a look at section 3. From the assumptions mentioned in that section you can easily derive the formula.
Hope that helps.