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/hull3-tests.scad | |
parent | 7213166c08e67a1251a2820cf0c2aed32648c824 (diff) |
Added some corner cases
Diffstat (limited to 'testdata/scad/features/hull3-tests.scad')
-rw-r--r-- | testdata/scad/features/hull3-tests.scad | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testdata/scad/features/hull3-tests.scad b/testdata/scad/features/hull3-tests.scad index a3e7d92..2bd7d73 100644 --- a/testdata/scad/features/hull3-tests.scad +++ b/testdata/scad/features/hull3-tests.scad @@ -19,3 +19,9 @@ module convex3dHole() { translate([0,40,0]) convex3dHole(); translate([40,40,0]) convex3dSimple(); + +// Empty +hull(); +// No children +hull() { } + |