This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/drape_frontend/animation_utils.cpp
2016-04-26 17:48:29 +03:00

15 lines
340 B
C++

#include "drape_frontend/animation_utils.hpp"
#include "drape_frontend/animation_constants.hpp"
#include "drape_frontend/visual_params.hpp"
#include "indexer/scales.hpp"
namespace df
{
bool IsAnimationAllowed(double duration, ScreenBase const & screen)
{
return duration > 0.0 && duration <= kMaxAnimationTimeSec;
}
} // namespace df