| 92 | /// |lhs| and |rhs| are any standard containers of m2::Point with random access iterator. |
| 93 | template <typename Container> |
| 94 | double GetIntersectionScoreForTriangulated(Container const & lhs, Container const & rhs) |
| 95 | { |
| 96 | return GetIntersectionScore<Container>(lhs, rhs, TrianglesToPolygon<Container>); |
| 97 | } |
| 98 | |
| 99 | /// |points| is any standard container of m2::Point with random access iterator. |
| 100 | template <typename Container> |
no outgoing calls