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 bool do_intersect(const int&, // unused
const Node& node) const Node& node)
{ {
gl_draw(node.bounding_box()); gl_draw(node.bbox());
return true; return true;
} }

View File

@ -140,6 +140,8 @@ namespace CGAL {
m_search_tree_constructed = false; m_search_tree_constructed = false;
} }
public:
// made public for advanced use by the polyhedron demo
/// generic traversal of the tree /// generic traversal of the tree
template <class Query, class Traversal_traits> template <class Query, class Traversal_traits>