defaulting to Convex_hull_traits_3 instead of Kernel_traits<Point_3>::type

This commit is contained in:
Sven Oesau 2025-06-26 16:26:12 +02:00
parent b8d043ff76
commit 6aaa37f3ef
1 changed files with 1 additions and 1 deletions

View File

@ -1092,7 +1092,7 @@ void convex_hull_3(InputIterator first, InputIterator beyond,
std::enable_if_t<boost::has_range_iterator<TriangleRange>::value>* = 0)
{
typedef typename std::iterator_traits<InputIterator>::value_type Point_3;
typedef typename Kernel_traits<Point_3>::type Traits;
typedef Convex_hull_traits_3<typename Kernel_traits<Point_3>::type> Traits;
Convex_hull_3::internal::Indexed_triangle_set<PointRange, TriangleRange> its(vertices,faces);
convex_hull_3(first, beyond, its, Traits());