chiark / gitweb /
c7f057f92bd222558b966f49e95157daeff3b291
[reprap-play.git] / flyscreen-handle.scad
1 // -*- C -*-
2
3 opening_height = 7.84;
4 opening_depth = 7.88;
5 openingedge_dia = 1.34;
6 opening_protrh = 1.8;
7
8 pivot_x = 6;
9 inside_len = 4;
10
11 pivoting_gap = 0.1;
12
13 outside_gap = 3;
14 outside_len = 16;
15 outend_height = 3;
16
17 outside_pushh = 4;
18 outside_pushslope = 1.4;
19 outside_push_inadj = 0.82;
20
21 ourcirc_r = 0.5 / 2;
22
23 opening_protr_slop = 0.1;
24
25 intooth_top_slop = 0.1;
26 inside_h_xgap = 1;
27
28 pivot_r = 2;
29 pivot_slop = 0.25;
30
31 width = 5;
32
33 // calculated
34
35 inside_h = opening_height/2 - opening_protrh - inside_h_xgap/2;
36
37 edge_or = openingedge_dia/2 + opening_protr_slop;
38
39 Q0 = [ openingedge_dia/2,
40        openingedge_dia/2 + opening_height/2 ];
41
42 p4p5d = [edge_or + ourcirc_r, 0];
43
44 P0 = [ pivot_x, pivoting_gap ];
45 P4 = Q0 - p4p5d;
46 P3t = [ P4[0], Q0[1] - openingedge_dia/2 + opening_protrh
47         - intooth_top_slop - ourcirc_r ];
48 P2 = P4 + [ -(inside_len - ourcirc_r*2), 0 ];
49 P1 = [ P2[0], P3t[1] - (inside_h + ourcirc_r*2) ];
50 P9 = [ outside_len - ourcirc_r, outside_gap/2 + ourcirc_r ];
51 P8 = P9 + [ 0, outend_height - ourcirc_r*2 ];
52 P5 = Q0 + p4p5d;
53
54 P6t = P5 + [ 0, outside_pushh - ourcirc_r*2 ];
55 P7 = [ P6t[0] + (P6t[1] - P1[1]) / outside_pushslope,
56        P1[1] ];
57
58 P3a = P3t + [ -outside_push_inadj, 0 ];
59 P6a = P6t + [ -outside_push_inadj, 0 ];
60
61 outside_push_inadj_slope = (P3t[1]-P4[1]) / (P6a[1]-P5[1]);
62
63 module ExtrusionSect(){
64   cr = openingedge_dia/2;
65   toph = opening_height/2 + opening_protrh;
66
67   for (my=[0,1]) {
68     mirror([0,my]) {
69       translate(Q0) {
70         hull(){
71           circle(r=cr, $fn=20);
72           translate([-cr,10]) square([cr*2, 1]);
73         }
74       }
75     }
76   }
77   translate([-opening_depth, -toph]) {
78     difference(){
79       translate([-5,-5])
80         square([opening_depth+6, toph*2+10]);
81       square([opening_depth+2, toph*2]);
82     }
83   }
84 }
85
86 module PsHull(ps) {
87   hull(){
88     for (p = ps) {
89       translate(p)
90         circle(r = ourcirc_r, $fn=10);
91     }
92   }
93 }
94
95 module LeverSect(inadj=false){
96   P3 = inadj ? P3a : P3t;
97   diag = inadj ? 0 : atan(outside_push_inadj_slope);
98   PsHull([P2,P3,P4]);
99   difference(){
100     PsHull([P0,P1,P2,P5,P8,P9]);
101     translate(Q0) {
102       rotate(diag){
103         hull(){
104           circle(r=edge_or, $fn=20);
105           translate([0,10]) circle(r=edge_or, $fn=20);
106         }
107       }
108     }
109   }
110 }
111
112 module LeverSectTop(){
113   difference(){
114     LeverSect(false);
115     translate([pivot_x,0]) circle(r= pivot_r + pivot_slop, $fn=20);
116   }
117 }
118
119 module LeverSectBot(inadj=false){
120   P6 = inadj ? P6a : P6t;
121   mirror([0,1]) {
122     LeverSect(inadj);
123     PsHull([P5,P6,P7]);
124     translate([pivot_x,0]) circle(r=pivot_r, $fn=20);
125   }
126 }
127
128 module Demo(){
129   translate([0,0,-5]) color("white") ExtrusionSect();
130   LeverSectTop();
131   LeverSectBot();
132 }
133
134 module LeverTop(){
135   linear_extrude(height=width, convexity=100) LeverSectTop();
136 }
137
138 module LeverBot(inadj=false){
139   linear_extrude(height=width, convexity=100) LeverSectBot(inadj);
140 }
141
142 module Test(){
143   translate([0,2,0]) LeverTop();
144   LeverBot();
145   translate([0,-opening_height - 2,0]) LeverBot(true);
146 }
147
148 //Demo();
149 Test();