HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
openvdb::OPENVDB_VERSION_NAME::tree::NodeChain< HeadType, HeadLevel > Struct Template Reference

NodeChain<RootNodeType, RootNodeType::LEVEL>::Type is a openvdb::TypeList that lists the types of the nodes of the tree rooted at RootNodeType in reverse order, from LeafNode to RootNode. More...

#include <RootNode.h>

Public Types

using SubtreeT = typename NodeChain< typename HeadT::ChildNodeType, HeadLevel-1 >::Type
 
using Type = typename SubtreeT::template Append< HeadT >
 

Detailed Description

template<typename HeadType, int HeadLevel>
struct openvdb::OPENVDB_VERSION_NAME::tree::NodeChain< HeadType, HeadLevel >

NodeChain<RootNodeType, RootNodeType::LEVEL>::Type is a openvdb::TypeList that lists the types of the nodes of the tree rooted at RootNodeType in reverse order, from LeafNode to RootNode.

For example, if RootNodeType is

RootNode<InternalNode<InternalNode<LeafNode> > >

then NodeChain::Type is

openvdb::TypeList<
LeafNode,
InternalNode<LeafNode>,
InternalNode<InternalNode<LeafNode> >,
RootNode<InternalNode<InternalNode<LeafNode> > > >
Note
Use the following to get the Nth node type, where N=0 is the LeafNodeType:
NodeChainType::Get<N>;

Definition at line 31 of file RootNode.h.

Member Typedef Documentation

template<typename HeadType, int HeadLevel>
using openvdb::OPENVDB_VERSION_NAME::tree::NodeChain< HeadType, HeadLevel >::SubtreeT = typename NodeChain<typename HeadT::ChildNodeType, HeadLevel-1>::Type

Definition at line 1002 of file RootNode.h.

template<typename HeadType, int HeadLevel>
using openvdb::OPENVDB_VERSION_NAME::tree::NodeChain< HeadType, HeadLevel >::Type = typename SubtreeT::template Append<HeadT>

Definition at line 1003 of file RootNode.h.


The documentation for this struct was generated from the following file: