| 464 | } |
| 465 | |
| 466 | void Tr2ScalingTool::ResetPrimitives() |
| 467 | { |
| 468 | for( PrimitiveIterator it = m_primitives.begin(); it != m_primitives.end(); ++it ) |
| 469 | { |
| 470 | ( *it )->m_localTransform = m_localTransform; |
| 471 | ( *it )->UpdateTransform(); |
| 472 | } |
| 473 | m_xLine->m_localTransform = IdentityMatrix(); |
| 474 | m_yLine->m_localTransform = IdentityMatrix(); |
| 475 | m_zLine->m_localTransform = IdentityMatrix(); |
| 476 | |
| 477 | UpdateLines(); |
| 478 | } |
| 479 | |
| 480 | |
| 481 | void Tr2ScalingTool::Init( Matrix& initialTransform ) |
nothing calls this directly
no test coverage detected