summaryrefslogtreecommitdiff
path: root/mech/production.scad
diff options
context:
space:
mode:
Diffstat (limited to 'mech/production.scad')
-rw-r--r--mech/production.scad7
1 files changed, 7 insertions, 0 deletions
diff --git a/mech/production.scad b/mech/production.scad
index 1485a39..7ca3051 100644
--- a/mech/production.scad
+++ b/mech/production.scad
@@ -5,6 +5,7 @@ use <panel_front.scad>
use <pcb_case/conversion.scad>
use <pcb_case/shell.scad>
use <pcb_case/panel.scad>
+use <pcb_case/spacer.scad>
module production() {
dim = dim_pcb_to_case(pcb_dim, margins, t);
@@ -26,6 +27,12 @@ module production() {
rotate([0, -90, 0])
translate([2*t-dim[0], -t, -t])
panel_front(pcb_dim, margins, t);
+
+ for(i = [0:3]) {
+ translate([dim[0]+bolt_dk/2+spacing, bolt_dk/2+i*(bolt_dk+spacing), 0]) {
+ spacer();
+ }
+ }
}
production();