This commit is contained in:
Sven Oesau 2024-03-20 18:10:54 +01:00
parent 8583c4b1d8
commit 560e576488
2 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ namespace internal {
template < class GeomTraits, template < class GeomTraits,
class IndexIterator, class IndexIterator,
class PointRange, class PointRange,
class PointMap=Identity_property_map<PointRange::value_type>, class PointMap=Identity_property_map<typename PointRange::value_type>,
class CacheDatum=Tag_false> class CacheDatum=Tag_false>
class AABB_indexed_triangle_primitive_2 class AABB_indexed_triangle_primitive_2
#ifndef DOXYGEN_RUNNING #ifndef DOXYGEN_RUNNING

View File

@ -53,7 +53,7 @@ struct Intersection_traits_wrapper<GT, 3> {
template<typename AABBTree, typename SkipFunctor> template<typename AABBTree, typename SkipFunctor>
class AABB_ray_intersection { class AABB_ray_intersection {
typedef typename AABBTree::AABB_traits AABB_traits; typedef typename AABBTree::AABB_traits AABB_traits;
static const int dimension = typename AABB_traits::Point::Ambient_dimension::value; static const int dimension = AABB_traits::Point::Ambient_dimension::value;
typedef typename internal::Intersection_traits_wrapper<AABB_traits, dimension>::Ray Ray; typedef typename internal::Intersection_traits_wrapper<AABB_traits, dimension>::Ray Ray;
typedef typename internal::Intersection_traits_wrapper<AABB_traits, dimension>::Vector Vector; typedef typename internal::Intersection_traits_wrapper<AABB_traits, dimension>::Vector Vector;