| 720 | //----------------------------------------------------------------------------- |
| 721 | |
| 722 | void VPathEditor::setPathPosition( const Point3F &pPosition ) |
| 723 | { |
| 724 | // Fetch Paths. |
| 725 | VPath *serverPath = mSelection.Path; |
| 726 | VPath *clientPath = getClientPath( serverPath ); |
| 727 | |
| 728 | // Update Position. |
| 729 | serverPath->setPosition( pPosition ); |
| 730 | clientPath->setPosition( pPosition ); |
| 731 | |
| 732 | // Update Selection. |
| 733 | updateSelection(); |
| 734 | } |
| 735 | |
| 736 | void VPathEditor::setPathRotation( const QuatF &pRotation ) |
| 737 | { |
nothing calls this directly
no test coverage detected