summaryrefslogtreecommitdiff
path: root/mech/pcb_case/pcb.scad
diff options
context:
space:
mode:
Diffstat (limited to 'mech/pcb_case/pcb.scad')
-rw-r--r--mech/pcb_case/pcb.scad14
1 files changed, 0 insertions, 14 deletions
diff --git a/mech/pcb_case/pcb.scad b/mech/pcb_case/pcb.scad
deleted file mode 100644
index 7b24131..0000000
--- a/mech/pcb_case/pcb.scad
+++ /dev/null
@@ -1,14 +0,0 @@
-include <bolt.scad>
-include <nut.scad>
-
-module pcb(dim, drillings, margins, t) {
- translate([2*t+margins[0][0], bolt_l+margins[1][0], t+margins[2][0]]) {
- difference() {
- cube([dim[0], dim[1], dim[2]]);
- for (drilling = drillings) {
- translate([drilling[0], drilling[1], 0])
- cylinder(d=3, h=dim[2], $fn=30);
- }
- }
- }
-}