MCPcopy Create free account
hub / github.com/ImageEngine/cortex / readBound

Method readBound

src/IECoreScene/LinkedScene.cpp:320–334  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

318}
319
320Imath::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
336void LinkedScene::writeBound( const Imath::Box3d &bound, double time )
337{

Calls

no outgoing calls