This commit is contained in:
Sébastien Loriot 2023-10-09 17:08:49 -07:00
parent dbd706a3f4
commit 5b67e30e86
1 changed files with 2 additions and 2 deletions

View File

@ -861,11 +861,11 @@ private:
if (curvature_type == MEAN_CURVATURE)
{
CGAL::Polygon_mesh_processing::interpolated_corrected_mean_curvature(*sm, vcurvature);
CGAL::Polygon_mesh_processing::interpolated_corrected_curvatures(*sm, CGAL::parameters::vertex_mean_curvature(vcurvature));
}
else if (curvature_type == GAUSSIAN_CURVATURE)
{
CGAL::Polygon_mesh_processing::interpolated_corrected_Gaussian_curvature(*sm, vcurvature);
CGAL::Polygon_mesh_processing::interpolated_corrected_curvatures(*sm, CGAL::parameters::vertex_Gaussian_curvature(vcurvature));
}
displaySMProperty<vertex_descriptor>(tied_string, *sm);