/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
search/geometry_utils.hpp
14 строк
422 B
Maxim Pimenov
[search] Minor cleanup.
21 май 2019, 20:07
21 май 2019, 20:07
f2d94f3
Код
Авторство
О чём код?
#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