diff --git a/Surface_mesh_parameterization/include/CGAL/Fixed_border_parameterizer_3.h b/Surface_mesh_parameterization/include/CGAL/Fixed_border_parameterizer_3.h index e9e73bf173a..f7b647af7bb 100644 --- a/Surface_mesh_parameterization/include/CGAL/Fixed_border_parameterizer_3.h +++ b/Surface_mesh_parameterization/include/CGAL/Fixed_border_parameterizer_3.h @@ -325,7 +325,7 @@ parameterize(TriangleMesh& mesh, halfedge_descriptor bhd, VertexUVmap uvmap, VertexIndexMap vimap, - VertexParameterizedMap vpm) + VertexParameterizedMap vpmap) { Error_code status = Base::OK; @@ -404,7 +404,7 @@ parameterize(TriangleMesh& mesh, if(main_border.find(v) == main_border.end()){ int index = get(vimap,v); put(uvmap,v,Point_2(Xu[index],Xv[index])); - put(vpm,v,true); + put(vpmap,v,true); } } diff --git a/Surface_mesh_parameterization/include/CGAL/MVC_post_processor_3.h b/Surface_mesh_parameterization/include/CGAL/MVC_post_processor_3.h index 605f47655b9..d286ca36481 100644 --- a/Surface_mesh_parameterization/include/CGAL/MVC_post_processor_3.h +++ b/Surface_mesh_parameterization/include/CGAL/MVC_post_processor_3.h @@ -753,7 +753,6 @@ public: /// \param bhd an halfedge descriptor on the boundary of `mesh`. /// \param uvmap an instanciation of the class `VertexUVmap`. /// \param vimap an instanciation of the class `VertexIndexMap`. - /// \param vpmap an instanciation of the class `VertexParameterizedMap`. /// template