changes needed for the Polyhedron demo to compile

This commit is contained in:
Camille Wormser 2009-06-05 18:04:47 +00:00
parent 54e53777e2
commit e03e9fb4fd
2 changed files with 4 additions and 2 deletions

View File

@ -39,7 +39,7 @@ struct AABB_drawing_traits
bool do_intersect(const int&, // unused
const Node& node)
{
gl_draw(node.bounding_box());
gl_draw(node.bbox());
return true;
}

View File

@ -140,7 +140,9 @@ namespace CGAL {
m_search_tree_constructed = false;
}
public:
// made public for advanced use by the polyhedron demo
/// generic traversal of the tree
template <class Query, class Traversal_traits>
void traversal(const Query& query, Traversal_traits& traits) const