| 77 | } |
| 78 | |
| 79 | void MapLinearAnimation::SetRotate(double startAngle, double endAngle) |
| 80 | { |
| 81 | m_angleInterpolator = AngleInterpolator(startAngle, endAngle); |
| 82 | if (m_angleInterpolator.IsActive()) |
| 83 | m_properties.insert(Animation::ObjectProperty::Angle); |
| 84 | } |
| 85 | |
| 86 | void MapLinearAnimation::SetScale(double startScale, double endScale) |
| 87 | { |
no test coverage detected