diff options
author | Marius Kintel <marius@kintel.net> | 2012-08-28 03:35:39 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-08-28 03:35:39 (GMT) |
commit | aab3c36f90977c6a20253b1742b741eb22b8fd1c (patch) | |
tree | 7faae96faaf567dba60266e085edc7010d2152f1 /testdata | |
parent | 0e9d66f5326860122c997ca084a1f3df7c5ca2f0 (diff) | |
parent | 2ac32862901dc28fe4d360b7c444e679cad430d7 (diff) |
Merge pull request #189 from openscad/issue188
Issue188
Diffstat (limited to 'testdata')
-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]); + } +} + |