| 62 | } |
| 63 | |
| 64 | void check_inside(m2::RectD const & r, m2::PointD const & p1, m2::PointD const & p2) |
| 65 | { |
| 66 | m2::PointD pp1 = p1; |
| 67 | m2::PointD pp2 = p2; |
| 68 | TEST(m2::Intersect(r, pp1, pp2), ()); |
| 69 | TEST((pp1 == p1) && (pp2 == p2), ()); |
| 70 | } |
| 71 | |
| 72 | void check_intersect_boundaries(m2::RectD const & r) |
| 73 | { |
no test coverage detected