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
|
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue