summaryrefslogtreecommitdiff
path: root/mech/pcb_case/panel.scad
diff options
context:
space:
mode:
Diffstat (limited to 'mech/pcb_case/panel.scad')
-rw-r--r--mech/pcb_case/panel.scad28
1 files changed, 0 insertions, 28 deletions
diff --git a/mech/pcb_case/panel.scad b/mech/pcb_case/panel.scad
deleted file mode 100644
index eef0b28..0000000
--- a/mech/pcb_case/panel.scad
+++ /dev/null
@@ -1,28 +0,0 @@
-include <nut.scad>
-
-use <conversion.scad>
-use <rounded_cube.scad>
-
-panel_dim_0_tol = 0.3;
-panel_dim_1_2_tol = 0.45;
-
-module pcb_case_panel(pcb_dim, margins, t) {
- dim = dim_pcb_to_case(pcb_dim, margins, t);
-
- rounded_cube(
- dim=[t, dim[1]-2*t, dim[2]-2*t],
- radius=t
- );
-}
-
-module pcb_case_panel_back(pcb_dim, margins, t) {
- translate([t, t, t])
- pcb_case_panel(pcb_dim, margins, t);
-}
-
-module pcb_case_panel_front(pcb_dim, margins, t) {
- dim = dim_pcb_to_case(pcb_dim, margins, t);
-
- translate([dim[0]-2*t, t, t])
- pcb_case_panel(pcb_dim, margins, t);
-}