remove _3 suffix left
This commit is contained in:
@@ -102,15 +102,15 @@ void test_pmesh(const Mesh& pmesh)
|
||||
|
||||
CGAL::Bbox_3 bb_v;
|
||||
BOOST_FOREACH(vertex_descriptor vd, vertices(pmesh))
|
||||
bb_v+=PMP::vertex_bbox_3(vd, pmesh);
|
||||
bb_v+=PMP::vertex_bbox(vd, pmesh);
|
||||
|
||||
CGAL::Bbox_3 bb_f;
|
||||
BOOST_FOREACH(face_descriptor fd, faces(pmesh))
|
||||
bb_f+=PMP::face_bbox_3(fd, pmesh);
|
||||
bb_f+=PMP::face_bbox(fd, pmesh);
|
||||
|
||||
CGAL::Bbox_3 bb_e;
|
||||
BOOST_FOREACH(edge_descriptor ed, edges(pmesh))
|
||||
bb_e+=PMP::edge_bbox_3(ed, pmesh);
|
||||
bb_e+=PMP::edge_bbox(ed, pmesh);
|
||||
|
||||
assert(bb==bb_v);
|
||||
assert(bb==bb_f);
|
||||
|
||||
Reference in New Issue
Block a user