Skip to content

Commit

Permalink
Replace translation function with a sum
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Jul 29, 2020
1 parent e0c54ae commit 2398c44
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -198,7 +198,7 @@ class Octree : public PointAccessor {
// --------------------------------------------------------------------------
// Utilities
// --------------------------------------------------------------------------
Point_3 transl(const Point_3 &p, const Vector_3 &v) { return m_traits.construct_translated_point_3_object()(p, v); }
Point_3 transl(const Point_3 &p, const Vector_3 &v) { return p + v; }

public:
Octree(Sd_traits const &traits)
Expand Down

0 comments on commit 2398c44

Please sign in to comment.