blob: f89529de2a81576ce596bc6d41976f7b37bab8e6 (
plain)
1
2
3
4
5
|
// Somehow the 2D union/tessellation algorithm doesn't support touching polygons
// Changing translate([-10,-10,0]) to translate([-9.99,-9.99,0]) works
square([10,10]);
translate([-10,-10,0]) square([10,10]);
|