fix compilation issues

This commit is contained in:
Sébastien Loriot 2025-02-13 01:28:57 +01:00
parent b83b5c7f88
commit b949cc1eba
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public Q_SLOTS:
if (ui.IsotropicClustering->isChecked()) if (ui.IsotropicClustering->isChecked())
PMP::acvd_isotropic_remeshing(remeshed, ui.nb_clusters_spin_box->value()); PMP::acvd_isotropic_remeshing(remeshed, ui.nb_clusters_spin_box->value());
else if (ui.QEMClustering->isChecked()) else if (ui.QEMClustering->isChecked())
PMP::acvd_isotropic_remeshing(remeshed, ui.nb_clusters_spin_box->value(), CGAL::parameters::use_qem_metric(true)); PMP::acvd_isotropic_remeshing(remeshed, ui.nb_clusters_spin_box->value(), CGAL::parameters::use_qem_based_energy(true));
else else
PMP::acvd_isotropic_remeshing(remeshed, ui.nb_clusters_spin_box->value(), CGAL::parameters::gradation_factor(0.8)); PMP::acvd_isotropic_remeshing(remeshed, ui.nb_clusters_spin_box->value(), CGAL::parameters::gradation_factor(0.8));