ImplicitCAD/Examples/example21.scad
2019-07-15 22:59:55 +01:00

14 lines
172 B
OpenSCAD

union()
{
cube([10,20,5]);
rotate(30)
translate([0,30,0])
{
cube([10,20,5]);
rotate(30)
translate([0,30,0])
{
cube([10,20,5]);
}
}
}