summaryrefslogtreecommitdiff
path: root/mech/pcb_case/bolt.scad
diff options
context:
space:
mode:
Diffstat (limited to 'mech/pcb_case/bolt.scad')
-rw-r--r--mech/pcb_case/bolt.scad8
1 files changed, 8 insertions, 0 deletions
diff --git a/mech/pcb_case/bolt.scad b/mech/pcb_case/bolt.scad
new file mode 100644
index 0000000..0a2f8a0
--- /dev/null
+++ b/mech/pcb_case/bolt.scad
@@ -0,0 +1,8 @@
+bolt_d = 3;
+bolt_r = bolt_d / 2;
+
+module bolt() {
+ cylinder(d=bolt_d,h=5); // TODO height is not considered at the moment
+}
+
+bolt();