#include<kfbxpath.h>
List of all members.
Detailed Description
Class
KFbxPath.
Object describing the single path from the first parent, the root node, to a node. Methods to access parent nodes, compare paths together are provided.
With some 3D system (maya), node can be named with the same name, as long as they do not share the same path. In such a system, a path is a unique identifier for a node. Paths are useful to match nodes during a merge back process.
Definition at line70of filekfbxpath.h.
Constructor&Destructor Documentation
Copy constructor.
- Parameters:
Member Function Documentation
Get the node on which the path leads.
- Returns:
- the node on which the path leads
Get the path's root node.
- Returns:
- KFbxNodeobject.
int GetParentCount | ( | | ) | const |
GetParentCount.
- Returns:
- count of parent nodes.
char const* GetParentNodeName | ( | int | pIndex | ) | const |
Retrieve parent node name.
- Parameters:
| pIndex | Parent index. 0 is the root node, the last parent is the immediate node parent. |
- Returns:
- name string.
KFbxNode* GetParentNode | ( | int | pIndex | ) | const |
Get a parent node.
- Parameters:
| pIndex | Parent index. 0 is the root node, the last parent is the immediate node parent. |
- Returns:
- node found.
Equivalence operator.
- Parameters:
- Returns:
true
if pPath is equivalent to this path.
Assignment operator.
- Parameters:
- Returns:
this
path (which will now be equivalent to pPath).
Array access operator.
- Parameters:
- Returns:
- node found.
Construct path of aKFbxNodeobject.
- Parameters:
| pNode | KFbxNodeObject used to build the path. |