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

geometry_utils.hpp « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 321a8884177dfbb8a631a35cf882c170c5be46b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "geometry/point2d.hpp"
#include "geometry/rect2d.hpp"

namespace search
{
// Distance between 2 mercator points in meters.
double PointDistance(m2::PointD const & a, m2::PointD const & b);

// Tests whether two rects given in the mercator projection are
// equal with the absolute precision |eps|.
bool IsEqualMercator(m2::RectD const & r1, m2::RectD const & r2, double eps);
}  // namespace search