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,
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue