diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-08-22 10:23:17 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-08-22 10:23:17 (GMT) |
commit | 2ac32862901dc28fe4d360b7c444e679cad430d7 (patch) | |
tree | 5a2a426552f385143d246b18a91a9cbe18a2e2fc | |
parent | 59080526a488a8dfaafdb7ba26d59c29b7abfc13 (diff) |
add line to hull test
-rw-r--r-- | testdata/scad/features/hull3-tests.scad | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testdata/scad/features/hull3-tests.scad b/testdata/scad/features/hull3-tests.scad index 12c8a11..b6b3fe4 100644 --- a/testdata/scad/features/hull3-tests.scad +++ b/testdata/scad/features/hull3-tests.scad @@ -15,3 +15,14 @@ translate([25,0,0]) hull() { cylinder(r=5, h=5, center=true); } } + +// Don't Crash (issue 188) + +translate([-5,-5,-5]) { + hull() { + intersection(){ + cube([1,1,1]); + translate([-1,-1,-1]) cube([1,1,1]); + } +} + |