| 78 | private : |
| 79 | |
| 80 | struct Sample |
| 81 | { |
| 82 | Sample( float t, const Imath::M44f &m ) |
| 83 | : time( t ), matrix( m ) |
| 84 | { |
| 85 | } |
| 86 | |
| 87 | bool operator < ( float t ) const |
| 88 | { |
| 89 | return time < t; |
| 90 | } |
| 91 | |
| 92 | float time; |
| 93 | Imath::M44f matrix; |
| 94 | }; |
| 95 | typedef std::vector<Sample> Samples; |
| 96 | |
| 97 | typedef std::stack<Samples> Stack; |
no outgoing calls
no test coverage detected