Panda3D
|
This object supervises the traversal of the data graph and the moving of data from one DataNode to its children. More...
#include <pandadoc.hpp>
Public Member Functions | |
__init__ (const DataGraphTraverser) | |
__init__ (Thread current_thread) | |
collectLeftovers () | |
Pick up any nodes that didn't get completely traversed. More... | |
Thread | getCurrentThread () |
Returns the currently-executing thread object, as passed to the DataGraphTraverser constructor. More... | |
traverse (PandaNode node) | |
Starts the traversal of the data graph at the indicated root node. More... | |
traverseBelow (PandaNode node, const DataNodeTransmit output) | |
Continues the traversal to all the children of the indicated node, passing in the given data, without actually calling transmit_data() on the given node. More... | |
This object supervises the traversal of the data graph and the moving of data from one DataNode to its children.
The data graph is used to manage data from input devices, etc. See the overview of the data graph in dataNode.h.
__init__ | ( | const | DataGraphTraverser | ) |
__init__ | ( | Thread | current_thread | ) |
collectLeftovers | ( | ) |
Pick up any nodes that didn't get completely traversed.
These must be nodes that have multiple parents, with at least one parent completely outside of the data graph.
Thread getCurrentThread | ( | ) |
Returns the currently-executing thread object, as passed to the DataGraphTraverser constructor.
traverse | ( | PandaNode | node | ) |
Starts the traversal of the data graph at the indicated root node.
traverseBelow | ( | PandaNode | node, |
const DataNodeTransmit | output | ||
) |
Continues the traversal to all the children of the indicated node, passing in the given data, without actually calling transmit_data() on the given node.