chiark / gitweb /
salter-scale-hook: wip
[reprap-play.git] / salter-scale-hook.scad
1 // -*- C -*-
2
3 rod_dia = 8+2;
4 thick = 8;
5 screw_dia = 3.5 + 0.75;
6 screw_head_dia = 8.2 + 1.0;
7 rod_offset = 14 + 2;
8 width = 40;
9
10 module C() {
11   circle(r = rod_dia/2, $fn=20);
12 }
13
14 module Profile() {
15   d = rod_dia/2 + thick/2;
16   hull(){
17     translate([-d, 0]) C();
18     translate([-d,-d]) C();
19   }
20 }
21
22 Profile();