| 82 | /// |lhs| and |rhs| are any standard containers of m2::Point with random access iterator. |
| 83 | template <typename Container> |
| 84 | double GetIntersectionScoreForPoints(Container const & lhs, Container const & rhs) |
| 85 | { |
| 86 | return GetIntersectionScore<Container>(lhs, rhs, PointsToPolygon<Container>); |
| 87 | } |
| 88 | |
| 89 | /// Throws NotAPolygonException exception. |
| 90 | /// For detailed info see comment for |