diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-06 22:48:57 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-06 22:48:57 (GMT) |
commit | 23e153f51210fb0ac8dac168515b4186b252a653 (patch) | |
tree | 12a0affabb866c0593ba58cdec98a23d00045fa7 /testdata/scad/features/projection-tests.scad | |
parent | 7213166c08e67a1251a2820cf0c2aed32648c824 (diff) |
Added some corner cases
Diffstat (limited to 'testdata/scad/features/projection-tests.scad')
-rw-r--r-- | testdata/scad/features/projection-tests.scad | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testdata/scad/features/projection-tests.scad b/testdata/scad/features/projection-tests.scad index 619aa01..e1b05c7 100644 --- a/testdata/scad/features/projection-tests.scad +++ b/testdata/scad/features/projection-tests.scad @@ -1,3 +1,10 @@ +// Empty +projection(); +// No children +projection() { } +// 2D child +projection(cut=true) { square(); } + linear_extrude(height=20) projection(cut=false) sphere(r=10); translate([22,0,0]) linear_extrude(height=20) projection(cut=true) translate([0,0,9]) sphere(r=10); translate([44,0,0]) linear_extrude(height=20) projection(cut=true) translate([0,0,7]) sphere(r=10); |