Skip to content
Snippets Groups Projects
Commit 642e0596 authored by Tom Fischer's avatar Tom Fischer
Browse files

added a new constructor that takes two iterators

parent 0f09ba0f
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,17 @@ public:
* */
AABB ( const std::vector<GeoLib::Point*>* points );
template <typename Iterator>
AABB(Iterator beg, Iterator end)
{
for (Iterator it(beg); it != end; it++) {
for (std::size_t k(0); k<3; k++) {
if ((*it)[k] < _min_pnt[k]) _min_pnt[k] = (*it)[k];
if (_max_pnt[k] < (*it)[k]) _max_pnt[k] = (*it)[k];
}
}
}
void update (GeoLib::Point const & pnt);
/**
* update axis aligned bounding box
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment