From 0a9047a9d313edf5e7e2d1182d1e3fe83b35b591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Thu, 22 May 2025 11:02:12 +0200 Subject: [PATCH] Use more iterations in tetrahderal remeshing --- Alpha_wrap_3/examples/Alpha_wrap_3/volumetric_wrap.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Alpha_wrap_3/examples/Alpha_wrap_3/volumetric_wrap.cpp b/Alpha_wrap_3/examples/Alpha_wrap_3/volumetric_wrap.cpp index ddc6f765612..fc646501013 100644 --- a/Alpha_wrap_3/examples/Alpha_wrap_3/volumetric_wrap.cpp +++ b/Alpha_wrap_3/examples/Alpha_wrap_3/volumetric_wrap.cpp @@ -159,7 +159,9 @@ int main(int argc, char** argv) // edge length of regular tetrahedron with circumradius alpha const double l = 1.6329931618554521 * alpha; // sqrt(8/3) - CGAL::tetrahedral_isotropic_remeshing(tr, l, CGAL::parameters::remesh_boundaries(false)); + CGAL::tetrahedral_isotropic_remeshing(tr, l, + CGAL::parameters::remesh_boundaries(false) + .number_of_iterations(5)); std::cout << "AFTER: " << tr.number_of_vertices() << " vertices, " << tr.number_of_cells() << " cells" << std::endl;