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:
authorrachytski <siarhei.rachytski@gmail.com>2011-10-03 14:35:05 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:25:22 +0300
commit24193578f04f54df1cff6ef5caf45e0895081df3 (patch)
treedcd824c6df12f69590ac69c55eee7019227ab617 /map/render_policy.hpp
parentfd3a3a6d0fc3aeab9e7b0c4724d614dc587cb0ee (diff)
added screen rotation support.
Diffstat (limited to 'map/render_policy.hpp')
-rw-r--r--map/render_policy.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/map/render_policy.hpp b/map/render_policy.hpp
index d791819dde..ed9cdb3db6 100644
--- a/map/render_policy.hpp
+++ b/map/render_policy.hpp
@@ -68,5 +68,9 @@ public:
virtual void StartScale(m2::PointD const & pt1, m2::PointD const & pt2, double timeInSec);
virtual void DoScale(m2::PointD const & pt1, m2::PointD const & pt2, double timeInSec);
virtual void StopScale(m2::PointD const & pt1, m2::PointD const & pt2, double timeInSec);
+
+ virtual void StartRotate(double a, double timeInSec);
+ virtual void DoRotate(double a, double timeInSec);
+ virtual void StopRotate(double a, double timeInSec);
/// @}
};