| 128 | } |
| 129 | |
| 130 | void MapLinearAnimation::SetMaxDuration(double maxDuration) |
| 131 | { |
| 132 | if (m_angleInterpolator.IsActive()) |
| 133 | m_angleInterpolator.SetMaxDuration(maxDuration); |
| 134 | |
| 135 | if (m_positionInterpolator.IsActive()) |
| 136 | m_positionInterpolator.SetMaxDuration(maxDuration); |
| 137 | |
| 138 | SetMaxScaleDuration(maxDuration); |
| 139 | } |
| 140 | |
| 141 | void MapLinearAnimation::SetMinDuration(double minDuration) |
| 142 | { |
no test coverage detected