blob: 33431130c087a8fd6ebc3b7b67d6d9b4c76d2145 (
plain)
1
2
3
4
5
6
7
8
|
// The inner cube won't render correctly in OpenCSG mode as long as this bug is present
difference() {
render(convexity=2) difference() {
cube(20, center = true);
cube(10, center = true);
}
translate([0, 0, 15]) cube(30, center=true);
}
|