Skip to content

Commit

Permalink
Remove get_coord
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Jul 29, 2020
1 parent 0798390 commit 52a2b14
Showing 1 changed file with 0 additions and 14 deletions.
Expand Up @@ -198,20 +198,6 @@ class Octree : public PointAccessor {
// --------------------------------------------------------------------------
// Utilities
// --------------------------------------------------------------------------
FT get_coord(const Point_3 &p, unsigned int d) {
CGAL_assertion(d < 3);
switch (d) {
case 0:
return p.x();
case 1:
return p.y();
case 2:
return p.z();
default:
return FT(0);
}
}

Point_3 constr_pt(FT x, FT y, FT z) const { return m_traits.construct_point_3_object()(x, y, z); }

Vector_3 constr_vec(const Point_3 &p, const Point_3 &q) const { return m_traits.construct_vector_3_object()(p, q); }
Expand Down

0 comments on commit 52a2b14

Please sign in to comment.