From f94a74b93af8225e467b788f0eff83d4a7d0ad70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20M=C3=B6ller?= Date: Fri, 30 Oct 2015 14:21:38 +0100 Subject: [PATCH] Document that AABB_traits can also model AABBRayIntersectionTraits --- AABB_tree/include/CGAL/AABB_traits.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/AABB_tree/include/CGAL/AABB_traits.h b/AABB_tree/include/CGAL/AABB_traits.h index 82cbe3e320c..9a71b584968 100644 --- a/AABB_tree/include/CGAL/AABB_traits.h +++ b/AABB_tree/include/CGAL/AABB_traits.h @@ -168,12 +168,19 @@ struct AABB_traits_base_2{ /// segments as query types for intersection detection and /// computations, and it handles points as query type for distance /// queries. +/// /// \cgalModels AABBTraits +/// \cgalModels AABBRayIntersectionTraits + /// \tparam GeomTraits must be a model of the concept \ref AABBGeomTraits, -/// snd provide the geometric types as well as the intersection tests and computations. +/// and provide the geometric types as well as the intersection tests and computations. /// \tparam Primitive provide the type of primitives stored in the AABB_tree. /// It is a model of the concept `AABBPrimitive` or `AABBPrimitiveWithSharedData`. /// +/// If the argument GeomTraits is a model of the concept \ref +/// AABBRayIntersectionGeomTraits, this class is also a model of \ref +/// AABBRayIntersectionTraits. +/// /// \sa `AABBTraits` /// \sa `AABB_tree` /// \sa `AABBPrimitive`