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 67e4890 commit fd80b05Copy full SHA for fd80b05
sectionproperties/tests/test_sections.py
@@ -445,6 +445,9 @@ def test_check_geometry_disjoint():
445
assert check_geometry_disjoint([rect.geom, circ.geom]) == True
446
assert check_geometry_overlaps([small_sq.geom, small_hole.geom]) == True
447
448
+ rect2 = rectangular_section(d=50, b=50).shift_section(x_offset=50)
449
+ assert check_geometry_disjoint([rect.geom, rect2.geom]) == False
450
+
451
452
def test_warping_disjoint_warning():
453
rect = rectangular_section(d=50, b=50)
0 commit comments