mirror of https://github.com/CGAL/cgal
fixes after review
This commit is contained in:
parent
5364629633
commit
725c69b677
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue