diff options
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() { } + |