diff options
Diffstat (limited to 'testdata/scad/features/intersection-tests.scad')
-rw-r--r-- | testdata/scad/features/intersection-tests.scad | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testdata/scad/features/intersection-tests.scad b/testdata/scad/features/intersection-tests.scad index f673b35..e53f3c9 100644 --- a/testdata/scad/features/intersection-tests.scad +++ b/testdata/scad/features/intersection-tests.scad @@ -1,3 +1,9 @@ +// Empty +intersection(); + +// No children +intersection() { } + intersection() { sphere(r=5); translate([0,0,3]) cube([4,4,6], center=true); |