| 35 | } |
| 36 | |
| 37 | Vector3 Tr2CurveCombiner::GetValue( double time ) const |
| 38 | { |
| 39 | Vector3 out( 0.f, 0.f, 0.f ); |
| 40 | for( auto it = begin( m_curves ); it != end( m_curves ); ++it ) |
| 41 | { |
| 42 | Vector3 temp( 0.f, 0.f, 0.f ); |
| 43 | ( *it )->GetValueAt( &temp, time ); |
| 44 | out += temp; |
| 45 | } |
| 46 | return out; |
| 47 | } |
| 48 | |
| 49 | // -------------------------------------------------------------------------------- |
| 50 | Vector3* Tr2CurveCombiner::Update( Vector3* in, Be::Time time ) |
nothing calls this directly
no test coverage detected