Returns a std::list of pointers to items within the search area
| 282 | |
| 283 | // Returns a std::list of pointers to items within the search area |
| 284 | std::list<typename IQuadtreeContainer::iterator> search(const geom2d::rect<CTYPE>& rArea) const |
| 285 | { |
| 286 | std::list<typename IQuadtreeContainer::iterator> listItemPointers; |
| 287 | root.search(rArea, listItemPointers); |
| 288 | return listItemPointers; |
| 289 | } |
| 290 | |
| 291 | void remove(typename IQuadtreeContainer::iterator& item) |
| 292 | { |