| 745 | } |
| 746 | |
| 747 | void VPathEditor::setPathTransform( const MatrixF &pTransform ) |
| 748 | { |
| 749 | // Fetch Paths. |
| 750 | VPath *serverPath = mSelection.Path; |
| 751 | VPath *clientPath = getClientPath( serverPath ); |
| 752 | |
| 753 | // Update Transform. |
| 754 | serverPath->setTransform( pTransform ); |
| 755 | clientPath->setTransform( pTransform ); |
| 756 | |
| 757 | // Update Selection. |
| 758 | updateSelection(); |
| 759 | } |
| 760 | |
| 761 | void VPathEditor::setPathScale( const VectorF &pScale ) |
| 762 | { |