diff --git a/Polyhedron/demo/Polyhedron/Plugins/Display/Display_property_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/Display/Display_property_plugin.cpp index e5baf54cfd7..687cb6a92df 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Display/Display_property_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Display/Display_property_plugin.cpp @@ -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(tied_string, *sm);