| 13 | |
| 14 | template <typename TIt> |
| 15 | void CheckSelfIntersections(TIt beg, TIt end, bool res) |
| 16 | { |
| 17 | TEST_EQUAL(CheckPolygonSelfIntersections(beg, end), res, ()); |
| 18 | using TRevIt = std::reverse_iterator<TIt>; |
| 19 | TEST_EQUAL(CheckPolygonSelfIntersections(TRevIt(end), TRevIt(beg)), res, ()); |
| 20 | } |
| 21 | |
| 22 | bool OnSegment(P const & p, P const ps[]) |
| 23 | { |
no test coverage detected