Skip to content

Commit

Permalink
Begin defining a DirectOctree class containing a CGAL::Octree
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Jul 30, 2020
1 parent b3e48eb commit d4ab810
Showing 1 changed file with 13 additions and 0 deletions.
Expand Up @@ -23,6 +23,8 @@
#include <CGAL/Bbox_3.h>
#include <CGAL/Shape_detection/Efficient_RANSAC/Shape_base.h>

#include <CGAL/Octree.h>

namespace CGAL {
namespace Shape_detection {

Expand Down Expand Up @@ -527,6 +529,17 @@ class Octree : public PointAccessor {
}

};

template<class Traits>
class DirectOctree {

CGAL::Octree::Octree<typename Traits::Input_range, typename Traits::Point_map> m_octree;

public:


};

}
}
}
Expand Down

0 comments on commit d4ab810

Please sign in to comment.