mirror of https://github.com/CGAL/cgal
Fixed some doc warnings
This commit is contained in:
parent
6f40a05af1
commit
0438d6d34d
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue