Document that AABB_traits can also model AABBRayIntersectionTraits

This commit is contained in:
Philipp Möller 2015-10-30 14:21:38 +01:00 committed by Sébastien Loriot
parent 2f263bb697
commit f94a74b93a
1 changed files with 8 additions and 1 deletions

View File

@ -168,12 +168,19 @@ struct AABB_traits_base_2<GeomTraits,true>{
/// 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`