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>2015-12-23 19:33:05 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:03:17 +0300
commitf6ac3786d755afde9534b28e9a1977e38b3aa470 (patch)
tree239acb986e517ef84c31d4991a37df7f6d3bc4c1 /indexer/feature_algo.hpp
parent8c57791e1d87fa500b3f7bb1b13f45282edc0cf1 (diff)
Refactored some geometry functions.
Correct implementation of feature::GetMinDistanceMeters().
Diffstat (limited to 'indexer/feature_algo.hpp')
-rw-r--r--indexer/feature_algo.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/feature_algo.hpp b/indexer/feature_algo.hpp
index f24b5e8aea..8f906e61f7 100644
--- a/indexer/feature_algo.hpp
+++ b/indexer/feature_algo.hpp
@@ -10,7 +10,7 @@ namespace feature
m2::PointD GetCenter(FeatureType const & f, int scale);
m2::PointD GetCenter(FeatureType const & f);
-double GetMinDistance(FeatureType const & ft, m2::PointD const & pt, int scale);
-double GetMinDistance(FeatureType const & ft, m2::PointD const & pt);
+double GetMinDistanceMeters(FeatureType const & ft, m2::PointD const & pt, int scale);
+double GetMinDistanceMeters(FeatureType const & ft, m2::PointD const & pt);
}