#include<kfbxnodeiterator.h>
List of all members.
Detailed Description
This class and iterator type accesses the FbxNode hierarchy.
The iterator takes a root node that can be any parent node in theKFbxScene. The iterator will then only travel within the children of a given root.
Since the iterator becomes invalid when the scene hierarchy changes, the iterator should only used in a fixed scene hierarchy.
Definition at line59of filekfbxnodeiterator.h.
Member Enumeration Documentation
Method by which the node hierarchy is traversed.
- eDepthFirstThe leaf of the tree are first traversed
- eBreadthFirstEach child is traversed before going down to the leafs
- eDepthFirstParentLike depth first but the parent of the leafs are returned prior to the leafs themselves
Definition at line69of filekfbxnodeiterator.h.
Constructor&Destructor Documentation
Contructor.
- Parameters:
| pRootNode | The root of the iterator hierarchy. |
| pType | The traversal type. |
Copy Constructor.
- Parameters:
Member Function Documentation
Get a pointer to the nextKFbxNode.
- Returns:
- The nextKFbxNodepointer, or
NULL
if the end is reached.
Get a pointer to the previousKFbxNodepointer.
- Returns:
- The previousKFbxNodepointer, or
NULL
if the root of the iterator is reached.