|
bool | do_overlap (const Bbox_2 &bb1, const Bbox_2 &bb2) |
| | returns true iff bb1 and bb2 overlap, i.e., iff their intersection is non-empty.
|
| |
| template<class InputIterator > |
| Bbox_2 | bbox_2 (InputIterator begin, InputIterator past_end) |
| | returns the bounding box of the objects in the range [first,past_end[. More...
|
| |
| template<class InputIterator , class Traits > |
| Bbox_2 | bbox_2 (InputIterator begin, InputIterator past_end, const Traits &traits) |
| | returns the bounding box of the objects in the range [first,past_end[. More...
|
| |
|
bool | do_overlap (const Bbox_3 &bb1, const Bbox_3 &bb2) |
| | returns true iff bb1 and bb2 overlap, i.e., iff their intersection is non-empty.
|
| |
| template<class InputIterator > |
| Bbox_3 | bbox_3 (InputIterator begin, InputIterator past_end) |
| | returns the bounding box of the objects in the range [first,past_end[. More...
|
| |
| template<class InputIterator , class Traits > |
| Bbox_3 | bbox_3 (InputIterator begin, InputIterator past_end, const Traits &traits) |
| | returns the bounding box of the objects in the range [first,past_end[. More...
|
| |
template<class InputIterator , class Traits >
returns the bounding box of the objects in the range [first,past_end[.
Traits must provide a functor Traits::Construct_bbox_2 having an operator returning the bounding box of each object in the range. Traits must also have a member function Traits::Construct_bbox_2 construct_bbox_2_object() const.
template<class InputIterator , class Traits >
returns the bounding box of the objects in the range [first,past_end[.
Traits must provide a functor Traits::Construct_bbox_3 having an operator returning the bounding box of each object in the range. Traits must also have a member function Traits::Construct_bbox_3 construct_bbox_3_object() const.