File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -445,12 +445,16 @@ def test_check_geometry_disjoint():
445445 rect2 = rectangular_section (d = 50 , b = 50 ).shift_section (x_offset = 50 )
446446 assert check_geometry_disjoint ([rect .geom , rect2 .geom ]) == False
447447
448+ rect3 = rectangular_section (d = 25 , b = 25 ).shift_section (y_offset = 50 )
449+ assert check_geometry_disjoint ([rect .geom , rect2 .geom , rect3 .geom ]) == False
450+
448451 assert check_geometry_disjoint ([rect .geom , circ .geom ]) == True
449452
450453 rect2 = rectangular_section (d = 50 , b = 50 ).shift_section (x_offset = 50 )
451454 assert check_geometry_disjoint ([rect .geom , rect2 .geom ]) == False
452455
453456
457+
454458def test_warping_disjoint_warning ():
455459 rect = rectangular_section (d = 50 , b = 50 )
456460 circ = circular_section (d = 50 , n = 32 ).shift_section (x_offset = 125 , y_offset = 25 )
You can’t perform that action at this time.
0 commit comments