| 80 | // ------------------------------------------------------------------------------------------------ |
| 81 | template <class T> |
| 82 | inline T Interpolate(const T &one, const T &two, ai_real val) { |
| 83 | return one + (two - one) * val; |
| 84 | } |
| 85 | |
| 86 | // ------------------------------------------------------------------------------------------------ |
| 87 | void KeyIterator::operator++() { |
no outgoing calls