-----------------------------
| 54 | |
| 55 | // ----------------------------- |
| 56 | const String MayaNode::getNodePath () |
| 57 | { |
| 58 | // Recursive call |
| 59 | String path; |
| 60 | if ( mParentNode != NULL ) |
| 61 | { |
| 62 | path = mParentNode->getNodePath () + path; |
| 63 | } |
| 64 | if ( !mName.empty () ) |
| 65 | path += "|" + mName; |
| 66 | |
| 67 | return path; |
| 68 | } |
| 69 | |
| 70 | // // ----------------------------- |
| 71 | // const char* MayaNode::getNodePath () |
no test coverage detected