Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2014-09-26 13:26:25 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:28:51 +0300
commitb58e285a591d14ca6af77d3695d23d538fa60c5f (patch)
tree96ba821bb72c1c2ff65ae5d6aee55ba85d38d407 /map/animator.cpp
parentd62f10356bf23391462334b315dbdbad8ec3e189 (diff)
[animation] Fixed logic of angle and segment interpolation.
Diffstat (limited to 'map/animator.cpp')
-rw-r--r--map/animator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/map/animator.cpp b/map/animator.cpp
index f13bf98406..e520c4a4fa 100644
--- a/map/animator.cpp
+++ b/map/animator.cpp
@@ -118,6 +118,6 @@ void Animator::StopChangeViewport()
double Animator::GetRotationSpeed() const
{
- /// making full circle in 3 seconds.
- return 1;
+ // making full circle in ~1 seconds.
+ return 6.0;
}