(self)
| 867 | self._find_intersection_fuzzer(poly2, poly3, False, False, None) |
| 868 | |
| 869 | def test_find_intersection_touching(self): |
| 870 | poly1 = polygon2.Polygon2([ (3, 3), (3, 6), (7, 5), (5, 3) ]) |
| 871 | poly2 = polygon2.Polygon2([ (4, 3), (8, 2), (6, -1) ]) |
| 872 | poly3 = polygon2.Polygon2([ (5, 5.5), (1, 6.5), (3, 7), (7, 6) ]) |
| 873 | |
| 874 | self._find_intersection_fuzzer(poly1, poly2, True, False, None) |
| 875 | self._find_intersection_fuzzer(poly1, poly3, True, False, None) |
| 876 | |
| 877 | def test_find_intersection_overlapping(self): |
| 878 | poly1 = polygon2.Polygon2([ (2, 1), (4, 3), (6, 3), (6, 1) ]) |
nothing calls this directly
no test coverage detected