ImplicitCAD/Examples/example21.scad

14 lines
172 B
OpenSCAD
Raw Permalink Normal View History

2019-07-16 00:59:55 +03:00
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]);
}
}
}