diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-05 17:25:05 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-05 17:25:05 (GMT) |
commit | f4bd15912a7179ccd4e39adc310900d020f15d8a (patch) | |
tree | 7aa0c007b4321c87f9822028973df141df4207e5 /testdata | |
parent | 4120846d18c1a7ce5a51169feb1babb0603bddc0 (diff) |
Last CGAL assert fix wasn't enough; expanded the fix to all operators
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/bugs/rotate-diff-nonmanifold-crash.scad | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testdata/scad/bugs/rotate-diff-nonmanifold-crash.scad b/testdata/scad/bugs/rotate-diff-nonmanifold-crash.scad index d7011d9..754a2a6 100644 --- a/testdata/scad/bugs/rotate-diff-nonmanifold-crash.scad +++ b/testdata/scad/bugs/rotate-diff-nonmanifold-crash.scad @@ -2,3 +2,8 @@ difference() { rotate_extrude($fn=5) translate([4,0,0]) square([10, 10], center=true); translate([6,6,6]) sphere(r=10); } + +union() { + rotate_extrude($fn=5) translate([4,0,0]) square([10, 10], center=true); + cylinder(h=5,r=3); +} |