From 725c69b6776c09049de35bad2c1bbc4ce489ca5a Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 10 Apr 2024 12:08:20 +0100 Subject: [PATCH] fixes after review --- AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_2.h | 8 ++++---- AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_3.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_2.h b/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_2.h index 050b89bace2..1205a9b1b74 100644 --- a/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_2.h +++ b/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_2.h @@ -31,13 +31,13 @@ public: A functor object to detect intersections between two geometric objects. Provides the following operators: -`bool operator()(Query, Bbox_2)`, +`bool operator()(const Query& q, const Bbox_2& b)`, -`bool operator()(Query, Primitive::Datum)`, +`bool operator()(const Query& q, const Primitive::Datum& d)`, -`bool operator()(Circle_2, Bbox_2)`. +`bool operator()(const Circle_2& c, const Bbox_2& b)`. -The operator returns `true` iff there exists a non-empty intersection. +The operator returns `true` iff there is an intersection. */ typedef unspecified_type Do_intersect_2; diff --git a/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_3.h b/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_3.h index 59d9d96a337..27a1beb63ec 100644 --- a/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_3.h +++ b/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_3.h @@ -31,13 +31,13 @@ public: A functor object to detect intersections between two geometric objects. Provides the following operators: -`bool operator()(Query, Bbox_3)`, +`bool operator()(const Query& q, const Bbox_3& b)`, -`bool operator()(Query, Primitive::Datum)`, +`bool operator()(const Query& q, const Primitive::Datum& d)`, -`bool operator()(Sphere_3, Bbox_3)`. +`bool operator()(const Sphere_3& s, const Bbox_3& b)`. -The operator returns `true` iff there exists a non-empty intersection. +The operator returns `true` iff there is an intersection. */ typedef unspecified_type Do_intersect_3;