Convex_hull_3: Fix constness

This commit is contained in:
Andreas Fabri 2020-11-12 09:40:22 +00:00
parent c702038fef
commit b54b62fcc4
2 changed files with 5 additions and 3 deletions

View File

@ -42,6 +42,8 @@ endif()
# Creating entries for all C++ files with "main" routine
# ##########################################################
create_single_source_cgal_program( "is_strongly_convex_3.cpp" )
create_single_source_cgal_program( "dynamic_hull_3.cpp" )
create_single_source_cgal_program( "dynamic_hull_LCC_3.cpp" )

View File

@ -187,13 +187,13 @@ bool is_strongly_convex_3(const Polyhedron& P, const Traits& traits)
}
template<class Polyhedron, class R>
bool CGAL_is_strongly_convex_3(Polyhedron& P, Point_3<R>*)
bool CGAL_is_strongly_convex_3(const Polyhedron& P, Point_3<R>*)
{
return is_strongly_convex_3(P, R());
}
template<class Polyhedron>
bool is_strongly_convex_3(Polyhedron& P)
bool is_strongly_convex_3(const Polyhedron& P)
{
typedef typename boost::property_map<Polyhedron, vertex_point_t>::type Ppmap;
typedef typename boost::property_traits<Ppmap>::value_type Point_3;
@ -204,7 +204,7 @@ bool is_strongly_convex_3(Polyhedron& P)
template <class ForwardIterator, class Polyhedron, class Traits>
bool all_points_inside( ForwardIterator first,
ForwardIterator last,
Polyhedron& P,
const Polyhedron& P,
const Traits& traits)
{
typedef typename Traits::Plane_3 Plane_3;