mirror of https://github.com/CGAL/cgal
changes needed for the Polyhedron demo to compile
This commit is contained in:
parent
54e53777e2
commit
e03e9fb4fd
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue