| 318 | } |
| 319 | |
| 320 | Imath::Box3d LinkedScene::readBound( double time ) const |
| 321 | { |
| 322 | if ( m_linkedScene && !m_atLink ) |
| 323 | { |
| 324 | if ( m_timeRemapped ) |
| 325 | { |
| 326 | time = remappedLinkTime( time ); |
| 327 | } |
| 328 | return m_linkedScene->readBound(time); |
| 329 | } |
| 330 | else |
| 331 | { |
| 332 | return m_mainScene->readBound(time); |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | void LinkedScene::writeBound( const Imath::Box3d &bound, double time ) |
| 337 | { |
no outgoing calls