diff options
Diffstat (limited to 'mech/pcb_case/bolt.scad')
-rw-r--r-- | mech/pcb_case/bolt.scad | 8 |
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(); |