z-axis: shift mounts to under parts
[clinton/prusa3.git] / box_frame / extras / groovemount.scad
CommitLineData
88f30890
VAH
1module groovemount(){
2
d3618a65
NZ
3difference(){
4translate([-12,-35,0])cube(size=[29,70,12], center=false);
5
6translate([-10,0,5])cube(size=[20,12.5,15], center=true);
7translate([-10,0,5+4.4])cube(size=[20,16.5,10], center=true);
8
9cylinder(h=20, r=12.5/2);
10translate([0,0,4.4])cylinder(h=20, r=16.5/2);
11translate([0,-25,0])cylinder(h=20, r=5/2);
12translate([0,25,0])cylinder(h=20, r=5/2);
88f30890
VAH
13}
14}
15
16groovemount();