diff options
Diffstat (limited to 'testdata/scad/features/hull3-tests.scad')
-rw-r--r-- | testdata/scad/features/hull3-tests.scad | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/testdata/scad/features/hull3-tests.scad b/testdata/scad/features/hull3-tests.scad index b6b3fe4..e3fc8e7 100644 --- a/testdata/scad/features/hull3-tests.scad +++ b/testdata/scad/features/hull3-tests.scad @@ -19,10 +19,10 @@ translate([25,0,0]) hull() { // Don't Crash (issue 188) translate([-5,-5,-5]) { - hull() { - intersection(){ - cube([1,1,1]); - translate([-1,-1,-1]) cube([1,1,1]); - } + hull() { + intersection() { + cube([1,1,1]); + translate([-1,-1,-1]) cube([1,1,1]); + } + } } - |