mirror of https://github.com/CGAL/cgal
Call function with CGAL::
This commit is contained in:
parent
36a25cf501
commit
a06c5aaee7
|
|
@ -152,7 +152,7 @@ add_vertex_and_face_to_border_test()
|
||||||
assert(dist == 2);
|
assert(dist == 2);
|
||||||
|
|
||||||
int blength = 0;
|
int blength = 0;
|
||||||
BOOST_FOREACH(halfedge_descriptor hd, halfedges_around_face(h1,m)){
|
BOOST_FOREACH(halfedge_descriptor hd, CGAL::halfedges_around_face(h1,m)){
|
||||||
CGAL_USE(hd);
|
CGAL_USE(hd);
|
||||||
blength++;
|
blength++;
|
||||||
}
|
}
|
||||||
|
|
@ -163,7 +163,7 @@ add_vertex_and_face_to_border_test()
|
||||||
assert(! is_border(res,m));
|
assert(! is_border(res,m));
|
||||||
assert(is_border(opposite(res,m),m));
|
assert(is_border(opposite(res,m),m));
|
||||||
res = opposite(res,m);
|
res = opposite(res,m);
|
||||||
BOOST_FOREACH(halfedge_descriptor hd, halfedges_around_face(res,m)){
|
BOOST_FOREACH(halfedge_descriptor hd, CGAL::halfedges_around_face(res,m)){
|
||||||
CGAL_USE(hd);
|
CGAL_USE(hd);
|
||||||
blength--;
|
blength--;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue