We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbdcb51 commit 9f5a476Copy full SHA for 9f5a476
tests/compas/geometry/predicates/test_predicates_2.py
@@ -29,7 +29,7 @@ def test_is_point_in_circle_xy_class_input():
29
30
def test_is_polygon_in_polygon_xy():
31
polygon_contour = Polygon([(0, 0, 0), (4, 2, 0), (10, 0, 0), (11, 10, 0), (8, 12, 0), (0, 10, 0)])
32
- polygon_inside = Polygon([(5, 5, 0), (10, 5, 0), (10, 10 , 0), (5, 10, 0)])
+ polygon_inside = Polygon([(5, 5, 0), (10, 5, 0), (10, 10, 0), (5, 10, 0)])
33
assert is_polygon_in_polygon_xy(polygon_contour, polygon_inside)
34
35
polygon_outside = Polygon([(15, 5, 0), (20, 5, 0), (20, 10, 0), (15, 10, 0)])
0 commit comments