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>2013-10-07 20:21:30 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:03:26 +0300
commitd8fb9adaecf0093a3a70f90bfed4f113ab2a148b (patch)
treef1c4f6b84aaa569ccffd7976925558b2339d08a6 /indexer/geometry_coding.cpp
parent13803d58396500ba2110ba0f92237f0df996774a (diff)
Added some comments.
Diffstat (limited to 'indexer/geometry_coding.cpp')
-rw-r--r--indexer/geometry_coding.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/geometry_coding.cpp b/indexer/geometry_coding.cpp
index 7706891521..ea14d863a0 100644
--- a/indexer/geometry_coding.cpp
+++ b/indexer/geometry_coding.cpp
@@ -60,7 +60,7 @@ m2::PointU PredictPointInTriangle(m2::PointU const & maxPoint,
m2::PointU const & p2,
m2::PointU const & p3)
{
- // parallelogramm prediction
+ // parallelogram prediction
return ClampPoint(maxPoint, p1 + p2 - p3);
}