supereight
|
Iterates over all valid data in the octree at the last scale it was updated at. More...
#include <iterator.hpp>
Public Types | |
typedef BaseTraits< DerivedT >::OctreeType | OctreeType |
typedef OctreeType::NodeType | NodeType |
using | difference_type = long |
using | value_type = OctantBase |
using | pointer = OctantBase * |
using | reference = OctantBase & |
using | iterator_category = std::forward_iterator_tag |
Public Member Functions | |
BaseIterator () | |
BaseIterator (OctreeType *octree_ptr) | |
BaseIterator & | operator++ () |
BaseIterator | operator++ (int) |
bool | operator== (const BaseIterator &other) const |
bool | operator!= (const BaseIterator &other) const |
OctantBase * | operator* () const |
Protected Member Functions | |
void | init () |
Iterates over all valid data in the octree at the last scale it was updated at.
The iterator performs a depth-first traversal of the octree. To use it just use the se::Octree::begin() and se::Octree::end() functions or a range-based for loop:
typedef BaseTraits<DerivedT>::OctreeType se::BaseIterator< DerivedT >::OctreeType |
typedef OctreeType::NodeType se::BaseIterator< DerivedT >::NodeType |
using se::BaseIterator< DerivedT >::difference_type = long |
using se::BaseIterator< DerivedT >::value_type = OctantBase |
using se::BaseIterator< DerivedT >::pointer = OctantBase* |
using se::BaseIterator< DerivedT >::reference = OctantBase& |
using se::BaseIterator< DerivedT >::iterator_category = std::forward_iterator_tag |
se::BaseIterator< DerivedT >::BaseIterator | ( | ) |
se::BaseIterator< DerivedT >::BaseIterator | ( | OctreeType * | octree_ptr | ) |
BaseIterator & se::BaseIterator< DerivedT >::operator++ | ( | ) |
BaseIterator se::BaseIterator< DerivedT >::operator++ | ( | int | ) |
bool se::BaseIterator< DerivedT >::operator== | ( | const BaseIterator< DerivedT > & | other | ) | const |
bool se::BaseIterator< DerivedT >::operator!= | ( | const BaseIterator< DerivedT > & | other | ) | const |
OctantBase * se::BaseIterator< DerivedT >::operator* | ( | ) | const |
|
protected |