| 116 | } |
| 117 | |
| 118 | static void OutputNode(Node* node) |
| 119 | { |
| 120 | printf("Node: %s : \n", node->m_Name); |
| 121 | printf(" local\n"); |
| 122 | OutputMatrix(node->m_Local); |
| 123 | printf("\n world\n"); |
| 124 | OutputMatrix(node->m_World); |
| 125 | printf("\n"); |
| 126 | } |
| 127 | |
| 128 | static void OutputNodeTree(Node* node, int indent) |
| 129 | { |
no test coverage detected