chiark / gitweb /
doveclip fix pin dimensions
[reprap-play.git] / doveclip.scad
1 // -*- C -*-
2
3 toothheight = 1.2;
4 webthick = 1.8;
5 height = 7;
6 pindepth = 10;
7 nomrad = height/2 - toothheight;
8 minrad = nomrad - 0.75;
9 maxrad = nomrad + 0.25;
10 jawthick = 1.5;
11
12 webgap = 0.4;
13 basepinclear = 1.0;
14
15 toothgap = webthick + webgap*2;
16 basethick = toothheight;
17
18 module DoveClipPin(h=pindepth) {
19   pinheight = nomrad*2 + jawthick*2;
20   translate([0,0, pinheight/2]) intersection(){
21     union(){
22       for (m=[0,1]) {
23         mirror([0,0,m]) translate([0,0,pinheight/2]) rotate([90,0,0])
24           cylinder($fn=20, r1=minrad, r2=maxrad, h=h);
25       }
26       translate([-webthick/2, -h, -pinheight/2-1])
27         cube([webthick, h, pinheight+2]);
28     }
29     translate([-maxrad-1, -h-1, -pinheight/2])
30       cube([maxrad*2+2, h+2, pinheight]);
31   }
32 }
33
34 module DoveClipEnd(baseextend=1, h=7) {
35   cubex = nomrad*2 + jawthick*2;
36   cube0y = -basethick-nomrad*2-toothheight;
37   centrey = -basethick-nomrad;
38   difference(){
39     translate([-cubex/2, cube0y, 0])
40       cube([cubex, -cube0y+baseextend, h]);
41     translate([0, centrey, -1])
42       cylinder($fn=20, r=nomrad, h=h+2);
43     translate([-toothgap/2, cube0y-1, -1])
44       cube([toothgap, toothheight+nomrad+1, h+2]);
45   }
46 }
47
48 module DoveClipPair(baseextend=1, h=7) {
49   delta = nomrad*2 + jawthick*2 + toothgap;
50   for (x=[-delta/2,delta/2])
51     translate([x,0,0])
52       DoveClipEnd(baseextend=baseextend, h=h);
53 }
54
55 module DoveClipPairBase(baseextend=0.1, h=7) {
56   delta = nomrad*2 + jawthick;
57   intrude = nomrad + basethick - basepinclear;
58   for (x=[-delta/2,delta/2]) {
59     translate([x,0,0])
60       DoveClipEnd(baseextend=baseextend, h=h);
61   }
62   translate([-delta, -intrude, 0])
63     cube([delta*2, intrude+0.1, h]);
64 }