Skip to content

Commit

Permalink
Rename Direct_octree to RANSAC_octree
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Aug 17, 2020
1 parent 4c1473e commit a04482a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -211,8 +211,8 @@ class Efficient_RANSAC {

private:

typedef internal::Direct_octree<Traits> Direct_octree;
typedef internal::Direct_octree<Traits> Indexed_octree;
typedef internal::RANSAC_octree<Traits> Direct_octree;
typedef internal::RANSAC_octree<Traits> Indexed_octree;

//--------------------------------------------typedef

Expand Down
Expand Up @@ -51,7 +51,7 @@ struct Point_map_to_indexed_point_map {
};

template<class Traits>
class Direct_octree {
class RANSAC_octree {

typedef typename Traits::Input_range::iterator Input_iterator;
typedef typename Traits::Point_map Point_map;
Expand All @@ -72,7 +72,7 @@ class Direct_octree {

typedef typename Octree::Node Node;

Direct_octree(const Traits &traits,
RANSAC_octree(const Traits &traits,
Input_iterator begin,
Input_iterator end,
Point_map point_map,
Expand Down

0 comments on commit a04482a

Please sign in to comment.