chiark / gitweb /
589db5e5094d1df518365572d0e34a5a74c677a6
[reprap-play.git] / doveclip.scad
1 // -*- C -*-
2
3 toothheight = 1.2;
4 webthick = 1.8;
5 height = 7;
6 pinlengthfact = 1.2;
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=height) {
19   pinh = h * pinlengthfact;
20   pinheight = nomrad*2 + jawthick*2;
21   translate([0,0, pinheight/2]) intersection(){
22     union(){
23       for (m=[0,1]) {
24         mirror([0,0,m]) translate([0,0,pinheight/2]) rotate([90,0,0])
25           cylinder($fn=20, r1=minrad, r2=maxrad, h=pinh);
26       }
27       translate([-webthick/2, -pinh, -pinheight/2-1])
28         cube([webthick, pinh, pinheight+2]);
29     }
30     translate([-maxrad-1, -pinh-1, -pinheight/2])
31       cube([maxrad*2+2, pinh+2, pinheight]);
32   }
33 }
34
35 function DoveClip_depth(baseextend) =
36   basethick + nomrad*2 + toothheight + baseextend;
37 function DoveClip_width() =
38   nomrad*2 + jawthick*2 + toothgap;
39
40 module DoveClipEnd(baseextend=1, h=7) {
41   cubex = nomrad*2 + jawthick*2;
42   cube0y = -basethick-nomrad*2-toothheight;
43   centrey = -basethick-nomrad;
44   difference(){
45     translate([-cubex/2, cube0y, 0])
46       cube([cubex, -cube0y+baseextend, h]);
47     translate([0, centrey, -1])
48       cylinder($fn=20, r=nomrad, h=h+2);
49     translate([-toothgap/2, cube0y-1, -1])
50       cube([toothgap, toothheight+nomrad+1, h+2]);
51   }
52 }
53
54 module DoveClipPair(baseextend=1, h=7) {
55   delta = DoveClip_width();
56   for (x=[-delta/2,delta/2])
57     translate([x,0,0])
58       DoveClipEnd(baseextend=baseextend, h=h);
59 }
60
61 module DoveClipPairBase(baseextend=0.1, h=7) {
62   delta = nomrad*2 + jawthick;
63   intrude = nomrad + basethick - basepinclear;
64   for (x=[-delta/2,delta/2]) {
65     translate([x,0,0])
66       DoveClipEnd(baseextend=baseextend, h=h);
67   }
68   translate([-delta, -intrude, 0])
69     cube([delta*2, intrude+0.1, h]);
70 }
71
72 module DoveClipPairSane(baseextend=0, h=7) {
73   rotate([0,0,90])
74     translate([0, DoveClip_depth(baseextend=0), 0])
75     DoveClipPairBase(baseextend=baseextend, h=h);
76 }