diff options
author | Marius Kintel <marius@kintel.net> | 2012-10-07 19:24:08 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-10-07 19:24:08 (GMT) |
commit | 0cea83a35d302929d22ddddbaa60280af62bf4dc (patch) | |
tree | 554d284a761cf37704a43de8b034df5ff784aa60 /testdata/scad/features/hull3-tests.scad | |
parent | fa9811c0f3314a0f343385c2cba7e691fa814b08 (diff) |
Fixed weakness in parser causing modifier characters not to work in front of 'if' statements. Fixes #197
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]); + } + } } - |