Revert "rename functions computing simplex bbox to bbox_3"

This reverts commit 357f261231.

The names have to be different otherwise for models of FaceGraph
have face, vertex and edge descriptors being pure integer the
overloads will be ambiguous
This commit is contained in:
Sébastien Loriot
2016-10-19 14:14:09 +02:00
parent d95b3fb00e
commit f9ecd715b5
4 changed files with 27 additions and 30 deletions
@@ -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::bbox_3(vd, pmesh);
bb_v+=PMP::vertex_bbox_3(vd, pmesh);
CGAL::Bbox_3 bb_f;
BOOST_FOREACH(face_descriptor fd, faces(pmesh))
bb_f+=PMP::bbox_3(fd, pmesh);
bb_f+=PMP::face_bbox_3(fd, pmesh);
CGAL::Bbox_3 bb_e;
BOOST_FOREACH(edge_descriptor ed, edges(pmesh))
bb_e+=PMP::bbox_3(ed, pmesh);
bb_e+=PMP::edge_bbox_3(ed, pmesh);
assert(bb==bb_v);
assert(bb==bb_f);