| 1362 | } |
| 1363 | |
| 1364 | void VPathEditor::pushNodeEdit( void ) |
| 1365 | { |
| 1366 | // Clear Current Edit Dirty. |
| 1367 | mNodeEdit.Dirty = false; |
| 1368 | |
| 1369 | if ( isValidSelection() ) |
| 1370 | { |
| 1371 | // Fetch Node. |
| 1372 | VPathNode *node = mSelection.Path->getNode( mSelection.Node ); |
| 1373 | |
| 1374 | // Store Node Details. |
| 1375 | mNodeEdit.Position = node->getLocalPosition(); |
| 1376 | mNodeEdit.Rotation = node->getLocalRotation(); |
| 1377 | mNodeEdit.Weight = node->getWeight(); |
| 1378 | } |
| 1379 | } |
| 1380 | |
| 1381 | void VPathEditor::popNodeEdit( void ) |
| 1382 | { |
no test coverage detected