Fixed some doc warnings

This commit is contained in:
Mael Rouxel-Labbé 2016-11-09 18:31:15 +01:00
parent 6f40a05af1
commit 0438d6d34d
2 changed files with 2 additions and 3 deletions

View File

@ -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);
}
}

View File

@ -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 <typename VertexUVMap,
typename VertexIndexMap>