From 1983ed15c5b786eb9187be4c422a1b40ac064e4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 11 Feb 2015 17:15:39 +0100 Subject: [PATCH] use listing --- AABB_tree/doc/AABB_tree/Concepts/AABBTraits.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/AABB_tree/doc/AABB_tree/Concepts/AABBTraits.h b/AABB_tree/doc/AABB_tree/Concepts/AABBTraits.h index 2d47115b313..cec8d6ba4d8 100644 --- a/AABB_tree/doc/AABB_tree/Concepts/AABBTraits.h +++ b/AABB_tree/doc/AABB_tree/Concepts/AABBTraits.h @@ -117,7 +117,8 @@ typedef unspecified_type Compute_bbox; /*! A functor object to compute intersection predicates between the query and the nodes of the tree. Provides the operators: -`bool operator()(const Query & q, const Bounding_box & box);` which returns `true` iff the query intersects the bounding box, and `bool operator()(const Query & q, const Primitive & primitive);` which returns `true` iff the query intersects the primitive. +- `bool operator()(const Query & q, const Bounding_box & box);` which returns `true` iff the query intersects the bounding box +- `bool operator()(const Query & q, const Primitive & primitive);` which returns `true` iff the query intersects the primitive */ typedef unspecified_type Do_intersect; @@ -138,7 +139,8 @@ typedef unspecified_type Intersect; /*! A functor object to compute distance comparisons between the query and the nodes of the tree. Provides the operators: -`bool operator()(const Query & query, const Bounding_box& box, const Point & closest);` which returns `true` iff the bounding box is closer to `query` than `closest` is, and `bool operator()(const Query & query, const Primitive & primitive, const Point & closest);` which returns `true` iff `primitive` is closer to the `query` than `closest` is. +- `bool operator()(const Query & query, const Bounding_box& box, const Point & closest);` which returns `true` iff the bounding box is closer to `query` than `closest` is +- `bool operator()(const Query & query, const Primitive & primitive, const Point & closest);` which returns `true` iff `primitive` is closer to the `query` than `closest` is */ typedef unspecified_type Compare_distance;