diff options
Diffstat (limited to 'mech/pcb_case/shell.scad')
-rw-r--r-- | mech/pcb_case/shell.scad | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mech/pcb_case/shell.scad b/mech/pcb_case/shell.scad index e7fe345..2599584 100644 --- a/mech/pcb_case/shell.scad +++ b/mech/pcb_case/shell.scad @@ -18,9 +18,9 @@ module shell_base(dim, t) { rounded_cube([t, dim[1]-2*t, dim[2]-2*t], radius); } for (x = [dim[0]/4, dim[0]-dim[0]/4]) { - translate([x,0,dim[2]/2-1.5*bolt_d]) + translate([x,0,dim[2]/2-1.5*bolt_ds]) rotate([-90,0,0]) - cylinder(r=bolt_r, h=1.1*t, $fn=30); + cylinder(d=bolt_ds, h=1.1*t, $fn=30); } } } @@ -28,7 +28,7 @@ module shell_base(dim, t) { module shell_connector(dim, t) { size_x = dim[0]-6*t; size_y = 2*nut_h; - size_z = dim[2]/2+3*bolt_d; + size_z = dim[2]/2+3*bolt_ds; difference () { // base body @@ -37,14 +37,14 @@ module shell_connector(dim, t) { // bolt holes for (x = [dim[0]/4, dim[0]-dim[0]/4]) { - translate([x,dim[1]-t,dim[2]/2+1.5*bolt_d]) + translate([x,dim[1]-t,dim[2]/2+1.5*bolt_ds]) rotate([90,0,0]) - cylinder(r=bolt_r, h=size_y, $fn=30); + cylinder(d=bolt_ds, h=size_y, $fn=30); } // nut holes for (x = [dim[0]/4, dim[0]-dim[0]/4]) { - translate([x,dim[1]-t-size_y,dim[2]/2+1.5*bolt_d]) + translate([x,dim[1]-t-size_y,dim[2]/2+1.5*bolt_ds]) rotate([-90,0,0]) cylinder(r=nut_r, h=nut_h, $fn=30); } @@ -66,7 +66,7 @@ module pcb_case_shell(dim, t, h, sockets) { } for (socket = sockets) { translate([socket[0], socket[1], 0]) { - cylinder(d=bolt_d, h=h, $fn=30); + cylinder(d=bolt_ds, h=h, $fn=30); cylinder(d=0.9*nut_d, h=nut_h, $fn=30); } } |