| 30 | |
| 31 | template <typename Point> |
| 32 | bool IsInSection(Point const & p1, Point const & p2, Point const & p) |
| 33 | { |
| 34 | return Between(p1.x, p2.x, p.x) && Between(p1.y, p2.y, p.y); |
| 35 | } |
| 36 | |
| 37 | template <typename Iter> |
| 38 | bool CheckPolygonSelfIntersections(Iter beg, Iter end) |
no test coverage detected