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

geometry_utils.cpp « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23d30b56be6a9d640592b14b6147f69ae94edcb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "search/geometry_utils.hpp"

#include "indexer/scales.hpp"

#include "geometry/mercator.hpp"

namespace search
{
double PointDistance(m2::PointD const & a, m2::PointD const & b)
{
  return mercator::DistanceOnEarth(a, b);
}

bool IsEqualMercator(m2::RectD const & r1, m2::RectD const & r2, double eps)
{
  return m2::IsEqual(r1, r2, eps, eps);
}
}  // namespace search