From 161df54f0031e7e47b68babf19bc6b3a4af7f965 Mon Sep 17 00:00:00 2001 From: Jackson Campolattaro Date: Wed, 29 Jul 2020 13:12:31 -0400 Subject: [PATCH] Remove transl() --- .../CGAL/Shape_detection/Efficient_RANSAC/Octree.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Shape_detection/include/CGAL/Shape_detection/Efficient_RANSAC/Octree.h b/Shape_detection/include/CGAL/Shape_detection/Efficient_RANSAC/Octree.h index f4b0934f40d..42eb6cb844f 100644 --- a/Shape_detection/include/CGAL/Shape_detection/Efficient_RANSAC/Octree.h +++ b/Shape_detection/include/CGAL/Shape_detection/Efficient_RANSAC/Octree.h @@ -193,14 +193,8 @@ public: } }; -private: - - // -------------------------------------------------------------------------- - // Utilities - // -------------------------------------------------------------------------- - Point_3 transl(const Point_3 &p, const Vector_3 &v) { return p + v; } - public: + Octree(Sd_traits const &traits) : m_traits(traits), m_bucket_size(20), m_set_max_level(10), m_root(nullptr) {}