OpenVDB  9.0.1
Public Types | Public Member Functions | Static Public Attributes | List of all members
InternalNode< _ChildNodeType, Log2Dim >::DenseIter< NodeT, ChildT, ValueT, TagT > Struct Template Reference

#include <openvdb/tree/InternalNode.h>

Inherits DenseIteratorBase< MaskDenseIterator, DenseIter< NodeT, ChildT, ValueT, TagT >, NodeT, ChildT, ValueT >.

Public Types

using BaseT = DenseIteratorBase< MaskDenseIterator, DenseIter, NodeT, ChildT, ValueT >
 
using NonConstValueT = typename BaseT::NonConstValueType
 
using NodeType = NodeT
 
using ValueType = ValueT
 
using ChildNodeType = ChildT
 
using NonConstNodeType = typename std::remove_const< NodeT >::type
 
using NonConstValueType = typename std::remove_const< ValueT >::type
 
using NonConstChildNodeType = typename std::remove_const< ChildT >::type
 

Public Member Functions

 DenseIter ()
 
 DenseIter (const MaskDenseIterator &iter, NodeT *parent)
 
bool getItem (Index pos, ChildT *&child, NonConstValueT &value) const
 
void setItem (Index pos, ChildT *child) const
 
void unsetItem (Index pos, const ValueT &value) const
 
bool getItem (Index, ChildT *&child, NonConstValueType &value) const
 Return true if the item at the given index in the parent node's table is a set value and return either the set value in child or the unset value in value. More...
 
bool isChildNode () const
 Return true if this iterator is pointing to a child node. More...
 
ChildT * probeChild (NonConstValueType &value) const
 If this iterator is pointing to a child node, return a pointer to the node. Otherwise, return nullptr and, in value, the value to which this iterator is pointing. More...
 
bool probeChild (ChildT *&child, NonConstValueType &value) const
 If this iterator is pointing to a child node, return true and return a pointer to the child node in child. Otherwise, return false and return the value to which this iterator is pointing in value. More...
 
bool probeValue (NonConstValueType &value) const
 Return true if this iterator is pointing to a value and return the value in value. Otherwise, return false. More...
 
void setChild (ChildT *child) const
 Replace with the given child node the item in the parent node's table to which this iterator is pointing. More...
 
void setValue (const ValueT &value) const
 Replace with the given value the item in the parent node's table to which this iterator is pointing. More...
 
bool operator== (const IteratorBase &other) const
 
bool operator!= (const IteratorBase &other) const
 
NodeT * getParentNode () const
 Return a pointer to the node (if any) over which this iterator is iterating. More...
 
NodeT & parent () const
 Return a reference to the node over which this iterator is iterating. More...
 
Index offset () const
 Return this iterator's position as an index into the parent node's table. More...
 
Index pos () const
 Identical to offset. More...
 
bool test () const
 Return true if this iterator is not yet exhausted. More...
 
 operator bool () const
 Return true if this iterator is not yet exhausted. More...
 
bool next ()
 Advance to the next item in the parent node's table. More...
 
void increment ()
 Advance to the next item in the parent node's table. More...
 
void increment (Index n)
 Advance n items in the parent node's table. More...
 
IteratorBaseoperator++ ()
 Advance to the next item in the parent node's table. More...
 
bool isValueOn () const
 Return true if this iterator is pointing to an active value. Return false if it is pointing to either an inactive value or a child node. More...
 
void setValueOn (bool on=true) const
 If this iterator is pointing to a value, set the value's active state. Otherwise, do nothing. More...
 
void setValueOff () const
 If this iterator is pointing to a value, mark the value as inactive. More...
 
Coord getCoord () const
 Return the coordinates of the item to which this iterator is pointing. More...
 
void getCoord (Coord &xyz) const
 Return in xyz the coordinates of the item to which this iterator is pointing. More...
 

Static Public Attributes

static const bool IsSparseIterator
 
static const bool IsDenseIterator
 

Member Typedef Documentation

using BaseT = DenseIteratorBase<MaskDenseIterator, DenseIter, NodeT, ChildT, ValueT>
using ChildNodeType = ChildT
inherited
using NodeType = NodeT
inherited
using NonConstChildNodeType = typename std::remove_const<ChildT >::type
inherited
using NonConstNodeType = typename std::remove_const<NodeT>::type
inherited
using NonConstValueType = typename std::remove_const<ValueT >::type
inherited
using ValueType = ValueT
inherited

Constructor & Destructor Documentation

DenseIter ( )
inline
DenseIter ( const MaskDenseIterator iter,
NodeT *  parent 
)
inline

Member Function Documentation

Coord getCoord ( ) const
inlineinherited

Return the coordinates of the item to which this iterator is pointing.

void getCoord ( Coord &  xyz) const
inlineinherited

Return in xyz the coordinates of the item to which this iterator is pointing.

bool getItem ( Index  pos,
ChildT *&  child,
NonConstValueT value 
) const
inline
bool getItem ( Index  ,
ChildT *&  child,
NonConstValueType value 
) const
inherited

Return true if the item at the given index in the parent node's table is a set value and return either the set value in child or the unset value in value.

Note
All subclasses must implement this accessor.
NodeT* getParentNode ( ) const
inlineinherited

Return a pointer to the node (if any) over which this iterator is iterating.

void increment ( )
inlineinherited

Advance to the next item in the parent node's table.

void increment ( Index  n)
inlineinherited

Advance n items in the parent node's table.

bool isChildNode ( ) const
inlineinherited

Return true if this iterator is pointing to a child node.

bool isValueOn ( ) const
inlineinherited

Return true if this iterator is pointing to an active value. Return false if it is pointing to either an inactive value or a child node.

bool next ( )
inlineinherited

Advance to the next item in the parent node's table.

Index offset ( ) const
inlineinherited

Return this iterator's position as an index into the parent node's table.

operator bool ( ) const
inlineinherited

Return true if this iterator is not yet exhausted.

bool operator!= ( const IteratorBase< MaskDenseIterator, NodeT > &  other) const
inlineinherited
IteratorBase& operator++ ( )
inlineinherited

Advance to the next item in the parent node's table.

bool operator== ( const IteratorBase< MaskDenseIterator, NodeT > &  other) const
inlineinherited
NodeT& parent ( ) const
inlineinherited

Return a reference to the node over which this iterator is iterating.

Exceptions
ValueErrorif there is no parent node.
Index pos ( ) const
inlineinherited

Identical to offset.

ChildT * probeChild ( NonConstValueType value) const
inlineinherited

If this iterator is pointing to a child node, return a pointer to the node. Otherwise, return nullptr and, in value, the value to which this iterator is pointing.

bool probeChild ( ChildT *&  child,
NonConstValueType value 
) const
inlineinherited

If this iterator is pointing to a child node, return true and return a pointer to the child node in child. Otherwise, return false and return the value to which this iterator is pointing in value.

bool probeValue ( NonConstValueType value) const
inlineinherited

Return true if this iterator is pointing to a value and return the value in value. Otherwise, return false.

void setChild ( ChildT *  child) const
inlineinherited

Replace with the given child node the item in the parent node's table to which this iterator is pointing.

void setItem ( Index  pos,
ChildT *  child 
) const
inline
void setValue ( const ValueT &  value) const
inlineinherited

Replace with the given value the item in the parent node's table to which this iterator is pointing.

void setValueOff ( ) const
inlineinherited

If this iterator is pointing to a value, mark the value as inactive.

If this iterator is pointing to a child node, then the current item in the parent node's table is required to be inactive. In that case, this method has no effect.

void setValueOn ( bool  on = true) const
inlineinherited

If this iterator is pointing to a value, set the value's active state. Otherwise, do nothing.

bool test ( ) const
inlineinherited

Return true if this iterator is not yet exhausted.

void unsetItem ( Index  pos,
const ValueT &  value 
) const
inline

Member Data Documentation

const bool IsDenseIterator
staticinherited
const bool IsSparseIterator
staticinherited