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, halfedge_descriptor bhd,
VertexUVmap uvmap, VertexUVmap uvmap,
VertexIndexMap vimap, VertexIndexMap vimap,
VertexParameterizedMap vpm) VertexParameterizedMap vpmap)
{ {
Error_code status = Base::OK; Error_code status = Base::OK;
@ -404,7 +404,7 @@ parameterize(TriangleMesh& mesh,
if(main_border.find(v) == main_border.end()){ if(main_border.find(v) == main_border.end()){
int index = get(vimap,v); int index = get(vimap,v);
put(uvmap,v,Point_2(Xu[index],Xv[index])); 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 bhd an halfedge descriptor on the boundary of `mesh`.
/// \param uvmap an instanciation of the class `VertexUVmap`. /// \param uvmap an instanciation of the class `VertexUVmap`.
/// \param vimap an instanciation of the class `VertexIndexMap`. /// \param vimap an instanciation of the class `VertexIndexMap`.
/// \param vpmap an instanciation of the class `VertexParameterizedMap`.
/// ///
template <typename VertexUVMap, template <typename VertexUVMap,
typename VertexIndexMap> typename VertexIndexMap>