| 354 | |
| 355 | template <typename T, typename TCollection> |
| 356 | bool HasIntersection(m2::Rect<T> const & rect, TCollection const & geometry) |
| 357 | { |
| 358 | for (auto const & g : geometry) |
| 359 | if (rect.IsIntersect(g)) |
| 360 | return true; |
| 361 | return false; |
| 362 | } |
| 363 | |
| 364 | template <class TArchive, class PointT> |
| 365 | TArchive & operator>>(TArchive & ar, m2::Rect<PointT> & rect) |
no test coverage detected