| 24 | std::string const kParallelLinearAnim = "ParallelLinear"; |
| 25 | |
| 26 | drape_ptr<SequenceAnimation> GetPrettyMoveAnimation(ScreenBase const & startScreen, ScreenBase const & endScreen) |
| 27 | { |
| 28 | return GetPrettyMoveAnimation(startScreen, startScreen.GetScale(), endScreen.GetScale(), startScreen.GetOrg(), |
| 29 | endScreen.GetOrg()); |
| 30 | } |
| 31 | |
| 32 | drape_ptr<SequenceAnimation> GetPrettyMoveAnimation(ScreenBase const & screen, m2::AnyRectD const & startRect, |
| 33 | m2::AnyRectD const & endRect) |
no test coverage detected