| 62 | } |
| 63 | |
| 64 | void Interpolator::SetMaxDuration(double maxDuration) |
| 65 | { |
| 66 | m_maxDuration = maxDuration; |
| 67 | if (m_maxDuration >= 0.0) |
| 68 | m_duration = std::min(m_duration, m_maxDuration); |
| 69 | } |
| 70 | |
| 71 | void Interpolator::SetMinDuration(double minDuration) |
| 72 | { |
no outgoing calls
no test coverage detected