Skip to content

Commit

Permalink
Add missing overloads
Browse files Browse the repository at this point in the history
  • Loading branch information
MaelRL committed Dec 16, 2024
1 parent 5050ba0 commit bb2cd83
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Kernel_23/doc/Kernel_23/Concepts/FunctionObjectConcepts.h
Original file line number Diff line number Diff line change
Expand Up @@ -8124,6 +8124,12 @@ class HasOnBoundedSide_3 {
bool operator()(const Kernel::Iso_cuboid_3&c,
const Kernel::Point_3&p);

/*!
returns true iff `p` lies on the bounded side of `c`.
*/
bool operator()(const Kernel::Circle_3& c,
const Kernel::Point_3& p);

/*!
returns true iff the line segment `ab` is inside the union of the
bounded sides of `s1` and `s2`.
Expand Down Expand Up @@ -8386,6 +8392,11 @@ class HasOnUnboundedSide_3 {
bool operator()(const Kernel::Iso_cuboid_3&c,
const Kernel::Point_3&p);

/*!
returns true iff `p` lies on the unbounded side of `c`.
*/
bool operator()(const Kernel::Circle_3&c,
const Kernel::Point_3&p);

/// @}

Expand Down

0 comments on commit bb2cd83

Please sign in to comment.