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:
authorDaria Volvenkova <d.volvenkova@corp.mail.ru>2015-11-18 17:01:21 +0300
committerDaria Volvenkova <d.volvenkova@corp.mail.ru>2015-12-29 16:36:05 +0300
commit29c3b1fdb856fb3b648abfcd0b421f9bf7a1ba92 (patch)
treea00b0ae804782b7776f37d4a38270e267dfebded /geometry
parent1c11a2f80e4d80d81ab9b74c5e4491c746f249bd (diff)
Minor renaming.
Conflicts: map/framework.cpp
Diffstat (limited to 'geometry')
-rw-r--r--geometry/screenbase.cpp2
-rw-r--r--geometry/screenbase.hpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/geometry/screenbase.cpp b/geometry/screenbase.cpp
index 2ef6edacd8..a6f433cd58 100644
--- a/geometry/screenbase.cpp
+++ b/geometry/screenbase.cpp
@@ -373,7 +373,7 @@ m2::PointD ScreenBase::PtoP3d(m2::PointD const & pt) const
return pixelPointPerspective;
}
-m2::PointD ScreenBase::P3dToP(m2::PointD const & pt) const
+m2::PointD ScreenBase::P3dtoP(m2::PointD const & pt) const
{
if (!m_isPerspective)
return pt;
diff --git a/geometry/screenbase.hpp b/geometry/screenbase.hpp
index 2afdd726a8..850b1c2076 100644
--- a/geometry/screenbase.hpp
+++ b/geometry/screenbase.hpp
@@ -134,9 +134,9 @@ public:
double GetAngleFOV() const { return m_3dFOV; }
- m2::PointD P3dToP(m2::PointD const & pt) const;
+ m2::PointD P3dtoP(m2::PointD const & pt) const;
- Matrix3dT const & PTo3dMatrix() const { return m_Pto3d; }
+ Matrix3dT const & Pto3dMatrix() const { return m_Pto3d; }
bool isPerspective() const { return m_isPerspective; }
m2::PointD PtoP3d(m2::PointD const & pt) const;