| 44 | } |
| 45 | |
| 46 | bool BoxChecker::is_on_boundary_edges(const VectorF& p) const { |
| 47 | if (!is_on_boundary(p)) return false; |
| 48 | return get_dim_on_border(p) > 1; |
| 49 | } |
| 50 | |
| 51 | bool BoxChecker::is_on_boundary_corners(const VectorF& p) const { |
| 52 | if (!is_on_boundary(p)) return false; |
no outgoing calls