blob: 3c6df7aad43b36277a555f991db35c16f39d95d1 (
plain)
1
2
3
4
5
6
7
8
9
|
// This tree cannot be pruned inline, but will still result in an empty CSG tree
// Crashes OpenSCAD-2011.12. Bug fixed in 14e4f3bb
intersection() {
union() {
cube();
translate([4,0,0]) cube();
}
translate([2,0,0]) cube();
}
|