diff --git a/AABB_tree/include/CGAL/AABB_tree.h b/AABB_tree/include/CGAL/AABB_tree.h index e2a2eee3a67..50600ec6944 100644 --- a/AABB_tree/include/CGAL/AABB_tree.h +++ b/AABB_tree/include/CGAL/AABB_tree.h @@ -429,6 +429,12 @@ public: /// that returns `true` in order to skip the primitive. /// Defaults to a functor that always returns `false`. /// + /// \note `skip` might be given some primitives that are not intersected by `query` + /// because the intersection test is done after the skip test. Also note that + /// the order the primitives are given to `skip` is not necessarily the + /// intersection order with `query`. + /// + /// /// `AABBTraits` must be a model of `AABBRayIntersectionTraits` to /// call this member function. template