| 46 | using namespace IECoreScene; |
| 47 | |
| 48 | TransformStack::TransformStack() |
| 49 | : m_motionIndex( -1 ) // not in motion block |
| 50 | { |
| 51 | m_stack.push( Samples( 1, Sample( 0.0f, Imath::M44f() ) ) ); |
| 52 | } |
| 53 | |
| 54 | TransformStack::TransformStack( const TransformStack &other, bool flatten ) |
| 55 | : m_motionIndex( other.m_motionIndex ) |