| 84 | } |
| 85 | |
| 86 | void MapLinearAnimation::SetScale(double startScale, double endScale) |
| 87 | { |
| 88 | m_scaleInterpolator = ScaleInterpolator(startScale, endScale, false /* isAutoZoom */); |
| 89 | if (m_scaleInterpolator.IsActive()) |
| 90 | m_properties.insert(Animation::ObjectProperty::Scale); |
| 91 | } |
| 92 | |
| 93 | Animation::TObjectProperties const & MapLinearAnimation::GetProperties(Object object) const |
| 94 | { |
no test coverage detected