diff options
Diffstat (limited to 'mech/pcb_case/common.scad')
-rw-r--r-- | mech/pcb_case/common.scad | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/mech/pcb_case/common.scad b/mech/pcb_case/common.scad index 0f79e16..dfcf909 100644 --- a/mech/pcb_case/common.scad +++ b/mech/pcb_case/common.scad @@ -1,8 +1,5 @@ -nut_h = 3; -nut_d = 4.15; -nut_r = nut_d / 2; -bolt_d = 3; -bolt_r = bolt_d / 2; +use <bolt.scad> +use <nut.scad> module rounded_cube(dim, radius) { range_y = [radius, dim[1]-radius]; |