openscad/testdata/scad/bugs/issue95-normalization-crash...

20 lines
379 B
OpenSCAD
Raw Normal View History

2012-04-03 15:21:16 +04:00
//
// Reported by Triffid Hunter.
2012-04-04 00:28:34 +04:00
// Causes a crash in CSGTermNormalizer::normalizePass()
2012-04-03 15:21:16 +04:00
//
2012-04-03 14:36:22 +04:00
2012-04-04 00:28:34 +04:00
difference() {
union() {
translate([0, -20, 0]) cube([30, 2, 40]);
cube();
}
2012-04-03 14:36:22 +04:00
2012-04-04 00:28:34 +04:00
translate([15.5, -19, 14]) {
cylinder(r=5, h=2);
rotate([-90, 0, 0]) difference() {
translate([0, 0, 2]) cylinder(r=2, h=3);
translate([0, 0, 4]) cylinder(h=2);
}
}
2012-04-03 14:36:22 +04:00
}