summaryrefslogtreecommitdiff
path: root/mech/production.scad
diff options
context:
space:
mode:
Diffstat (limited to 'mech/production.scad')
-rw-r--r--mech/production.scad4
1 files changed, 3 insertions, 1 deletions
diff --git a/mech/production.scad b/mech/production.scad
index 448a439..1485a39 100644
--- a/mech/production.scad
+++ b/mech/production.scad
@@ -1,5 +1,7 @@
include <parameters.scad>
+use <panel_front.scad>
+
use <pcb_case/conversion.scad>
use <pcb_case/shell.scad>
use <pcb_case/panel.scad>
@@ -23,7 +25,7 @@ module production() {
translate([dim[0], dim[1]+spacing, 0])
rotate([0, -90, 0])
translate([2*t-dim[0], -t, -t])
- pcb_case_panel_front(pcb_dim, margins, t);
+ panel_front(pcb_dim, margins, t);
}
production();