| 62 | } |
| 63 | |
| 64 | void MapLinearAnimation::SetMove(m2::PointD const & startPos, m2::PointD const & endPos, ScreenBase const & convertor) |
| 65 | { |
| 66 | m_positionInterpolator = PositionInterpolator(startPos, endPos, convertor); |
| 67 | if (m_positionInterpolator.IsActive()) |
| 68 | m_properties.insert(Animation::ObjectProperty::Position); |
| 69 | } |
| 70 | |
| 71 | void MapLinearAnimation::SetMove(m2::PointD const & startPos, m2::PointD const & endPos, m2::RectD const & viewportRect, |
| 72 | double scale) |
no test coverage detected