chiark / gitweb /
fairphone-case: break out Struts (nfc)
[reprap-play.git] / fairphone-case.scad
1 // -*- C -*-
2
3 phone_height = 146.5 - .80;
4 phone_width = 76.75 - .50;
5
6 phone_cnr_rad = 6.0;
7
8 button_cutout_depth = 9;
9
10 phone_edge_thick = 9.0;
11 phone_total_thick = 12.0;
12 phone_backside_slope_inner = 1.5; // larger means shallower
13 phone_backside_slope_outer = 1.0; // larger means shallower
14
15 camera_pos_tl = [  7.0, 13.0 ]; // measured from tl corner
16 camera_pos_br = [ 22.85,37.85]; // tl/br as seen from back
17
18 case_th_bottom = 2.5;
19 case_th_lid = 2.5;
20 case_th_side = 2;
21 case_th_lip = 1.2;
22
23 case_struts_count = 6;
24 case_struts_solid_below = 0.75;
25 case_struts_solid_above = 1.00;
26 case_struts_width = 0.10;
27
28 keeper_th_z = 0.75;
29 keeper_th_x = 0.75;
30 keeper_inner_width = 2.75;
31 keeper_inner_height = 2.75;
32 keeper_slant_slope = 2; // larger means steeper
33
34 keeper_gap_z_top = 0.25;
35 keeper_gap_z_bot = 0.75;
36 keeper_gap_x     = 0.25;
37 keeper_gap_x_holes = 0.75;
38
39 case_lip = 1.25;
40
41 lid_gap_x = 0.25;
42 lid_gap_z = 0.25;
43 lid_lip = 1.75;
44
45 $fa = 5;
46 $fs = 0.1;
47
48 button_l_fudge = 4.5;
49
50 // ---------- calculated ----------
51
52 // ----- could be changed -----
53 lid_buttoncover_gap = lid_gap_x;
54 lid_buttoncover_overlap = case_th_lip + keeper_gap_z_top;
55
56 phone_backside_slope_thick = phone_total_thick - phone_edge_thick;
57
58 //lid_lip_overlap_width xxx bad name = ;
59 //lid_lip_inner_slope = [ 5, 5 ]; // xxx
60
61 epp0 = [0,0];
62 epp1 = [0, -phone_edge_thick];
63 epp2i = epp1 + phone_backside_slope_thick * [ phone_backside_slope_inner, -1 ];
64 epp2o = epp1 + phone_backside_slope_thick * [ phone_backside_slope_outer, -1 ];
65 epp3 = epp2i + [10, 0];
66 epp5 = epp0 + [0,1] * (keeper_th_z + keeper_gap_z_top + case_lip);
67 epp4 = epp5 + [-1,0] * case_th_side;
68
69 kppe = [0,0];
70 kppd = kppe + [1,0] * keeper_inner_width;
71 kppc = kppd + [0,1] * keeper_th_z;
72 kppb = [ kppe[0] - keeper_th_x, kppc[1] ];
73 kppf = kppe - [0,1] * keeper_inner_height;
74 kppa = [ kppb[0], kppf[1] ];
75
76 lpp10 = [ epp5[0] + lid_gap_x, kppc[1] + lid_gap_z ];
77 lpp11 = [ lpp10[0],            epp5[1] + lid_gap_z ];
78 lpp12 = [ epp4[0] + lid_lip,   lpp11[1] ];
79 lpp13 = [ lpp12[0],            lpp12[1] + lid_lip ];
80
81 // button profile
82 bppM = epp4 + [0,5];
83 bppN = [ 0.5 * (epp0[0] + epp4[0]), bppM[1] ];
84 bppR = [ bppN[0] + lid_buttoncover_gap, -button_cutout_depth ];
85 bppS = [ epp1[0], bppR[1] ];
86 bppQ = [ bppM[0], bppR[1] - lid_buttoncover_overlap ];
87 bppP = bppQ + [0,1] * lid_buttoncover_gap;
88 bppO = [ bppN[0], bppP[1] ];
89 bppL = lpp10 + [5,0];
90 bppK = [ bppL[0], bppN[1] ];
91 bppJ = [ bppN[0], bppL[1] ];
92
93 module rectfromto(a,b) {
94   ab = b - a;
95   translate([min(a[0], b[0]), min(a[1], b[1])])
96     square([abs(ab[0]), abs(ab[1])]);
97 }
98 module circleat(c,r) { translate(c) circle(r); }
99
100 module KeeperProfile(slant=0){
101   use_e = kppe + [0,-1] * slant * keeper_inner_width / keeper_slant_slope;
102   polygon([use_e, kppd, kppc, kppb, kppa, kppf]);
103 }
104
105 module EdgeProfile(){
106   difference(){
107     hull(){
108       translate(epp3) square(case_th_bottom*2, center=true);
109       circleat(epp2o, r=case_th_bottom);
110       circleat(epp1, r=case_th_side);
111       rectfromto(epp0, epp4);
112     }
113     polygon([ epp5 + [0,10],
114               epp1,
115               epp2i,
116               epp3 + [10,0] ]);
117   }
118 }
119
120 module LidEdgeProfile(){
121   polygon([ lpp10,
122             lpp11,
123             lpp12,
124             lpp13,
125             lpp13 + [10, 0],
126             lpp10 + [10, 0]
127             ]);
128   intersection(){
129     circleat(lpp12, r=lid_lip);
130     rectfromto( lpp12 + [-10,   0],
131                 lpp12 + [+10, +10] );
132   }
133 }
134
135 module ButtonCoverProfile(){
136   intersection(){
137     polygon([ bppM, bppP, bppO, bppJ, bppL, bppK ]);
138     hull(){
139       EdgeProfile();
140       LidEdgeProfile();
141     }
142   }
143 }
144
145 module ButtonPlan(l, deep, cut){
146   bigger =
147     (deep ? lid_buttoncover_overlap : 0) +
148     (cut  ? 0 : -lid_buttoncover_gap);
149
150   d_D1_y =
151     (cut  ? 0 : lid_buttoncover_gap);
152
153   C = [0,0]; // by definition
154   T = [ 0, epp4[1] ];
155   G = T + [0,10];
156   B0 = C + [0,-1] * button_cutout_depth;
157   r0 = 0.5 * (T[1] - B0[1]);
158   A = [  -(l + button_l_fudge)/2 + r0, 0.5 * (T[1] + B0[1]) ];
159   r1 = r0 + bigger;
160   // | D1 - A | = r1 * 2
161   // D1_y = T_y - r1 + d_D1_y
162   // =>    4 * r1^2   =  (r1-r0 + d_D1_y)^2 + (D1_x - A_x)^2
163   // =>    D1_x =  A_x + v/~ [  4 * r1^2   -   (r1-r0 + d_D1_y)^2 ]
164   D1  = [ A[0] - sqrt( 4*r1*r1 - pow(bigger + d_D1_y, 2) ),
165           T[1] - r1 + d_D1_y ];
166   E1  = 0.5 * (D1 + A);
167   F1  = D1 + [0,10];
168
169   hull(){
170     for (m=[0,1]) mirror([m,0])
171       circleat(A, r1);
172   }
173   for (m=[0,1]) mirror([m,0]) {
174     difference(){
175       polygon([ E1,
176                 A,
177                 B0,
178                 G,
179                 F1,
180                 D1
181                 ]);
182       circleat(D1, r1);
183     }
184   }
185 }
186
187 module CaseBase_rhsflip(yn=[0,1]) {
188   for (rhs=yn) {
189     translate([phone_width/2, 0, 0])
190       mirror([rhs,0,0])
191       translate([-phone_width/2, 0, 0])
192       children();
193   }
194 }
195
196 module CaseBase_botflip() {
197   for (bot=[0,1]) {
198     translate([0, -phone_height/2, 0])
199       mirror([0, bot, 0])
200       translate([0, phone_height/2, 0])
201       children();
202   }
203 }  
204
205 module AroundEdges(fill_zstart, fill_th, fill_downwards=0){
206   // sides
207   CaseBase_rhsflip(){
208     translate([0, -phone_cnr_rad, 0])
209       rotate([90,0,0])
210       linear_extrude(height = phone_height - phone_cnr_rad*2)
211       children(0);
212   }
213   // corners
214   CaseBase_rhsflip() CaseBase_botflip() {
215     translate([+1,-1] * phone_cnr_rad)
216       intersection(){
217         rotate_extrude()
218           intersection(){
219             mirror([1,0,0])
220               translate([-1,0] * phone_cnr_rad)
221               children(0);
222             rectfromto([0,-20],[10,20]);
223           }
224         translate([-10, 0, -20] + 0.01 * [+1,-1, 0] )
225           cube([10,10,40]);
226       }
227   }
228   // top and bottom
229   CaseBase_botflip(){
230     translate([ phone_width - phone_cnr_rad, 0,0 ])
231       rotate([90,0,-90])
232       linear_extrude(height = phone_width - phone_cnr_rad*2)
233       children(0);
234   }
235   // fill
236   translate([0,0, fill_zstart])
237     mirror([0,0, fill_downwards])
238     linear_extrude(height = fill_th)
239     rectfromto([+1,-1] * phone_cnr_rad,
240                [phone_width, -phone_height] + [-1,+1] * phone_cnr_rad);
241 }
242
243 module Struts(z_min, th){
244   for (i= [1 : 1 : case_struts_count]) {
245     translate([0,
246                -phone_height * i / (case_struts_count+1),
247                z_min + case_struts_solid_below])
248       linear_extrude(height= th
249                      -(case_struts_solid_below+case_struts_solid_above))
250       rectfromto([               epp2i[0], -0.5 * case_struts_width ],
251                  [ phone_width - epp2i[0], +0.5 * case_struts_width ]);
252   }
253 }
254
255 module CaseBase(){
256   AroundEdges(epp3[1], case_th_bottom, 1)
257     EdgeProfile();
258 }
259
260 module Case(){ ////toplevel
261   difference(){
262     union(){
263       CaseBase();
264
265       // ledge (fixed keeper)
266       intersection(){
267         rotate([90, 0, 0])
268           linear_extrude(height = phone_height + phone_cnr_rad * 2)
269           KeeperProfile(1);
270
271         // outline of the whole case, to stop it protruding
272         translate([0,0, -25])
273           linear_extrude(height = 50)
274           hull()
275           // CaseBase_rhsflip() // actually, we only care about the LH
276           CaseBase_botflip()
277           circleat([+1,-1] * phone_cnr_rad, phone_cnr_rad + case_th_side/2);
278       }
279     }
280
281     // slot for keeper
282     CaseBase_rhsflip(1)
283       translate([0, -phone_cnr_rad, 0])
284       rotate([90, 0, 0])
285       linear_extrude(height = phone_height + phone_cnr_rad * 2)
286       minkowski(){
287         KeeperProfile();
288         rectfromto([ -keeper_gap_x,    -keeper_gap_z_bot ],
289                    [ keeper_gap_x_holes,    +keeper_gap_z_top ]);
290       }
291
292     // front camera
293     CaseBase_rhsflip([1])
294       mirror([0, 0, 1])
295       linear_extrude(height = 20)
296       mirror([0, 1, 0])
297       rectfromto(camera_pos_tl, camera_pos_br);
298
299     // struts (invisible, because they're buried in the case)
300     Struts(epp2i[1] - case_th_bottom, case_th_bottom);
301   }
302 }
303
304 module Lid(){ ////toplevel
305   AroundEdges(lpp10[1], lpp13[1] - lpp10[1], 0)
306     LidEdgeProfile();
307 }
308
309 module TestLength(){ ////toplevel
310   intersection(){
311     Case();
312     translate([-30, -200, -20])
313     cube([30 + 15, 250, 40]);
314   }
315 }
316
317 module TestWidth(){ ////toplevel
318   intersection(){
319     Case();
320     translate([-30, -(phone_height - 25), -20])
321       mirror([0, 1, 0])
322       cube([200, 50, 40]);
323   }
324 }
325
326 module TestLidWidthPrint(){ ////toplevel
327   rotate([0,180.0])
328     intersection(){
329       Lid();
330       translate([-30, -(phone_height - 25), -20])
331         mirror([0, 1, 0])
332         cube([200, 50, 40]);
333     }
334 }
335
336 module TestCamera(){ ////toplevel
337   intersection(){
338     Case();
339     CaseBase_rhsflip(1)
340       translate([0,0,-25])
341       linear_extrude(height = 50)
342       mirror([0, 1, 0])
343       rectfromto([-20, -20],
344                  camera_pos_br + [ 5, 5 ]);
345   }
346 }
347
348 module OneKeeper(){ ////toplevel
349   translate([0, -phone_cnr_rad, 0])
350     rotate([90, 0, 0])
351     linear_extrude(height = phone_height - phone_cnr_rad * 2)
352     KeeperProfile();
353 }
354
355 module OneKeeperPrint(){ ////toplevel
356   rotate([0,180,0])
357     OneKeeper();
358 }
359
360 module Keeper(){ ////toplevel
361   CaseBase_rhsflip()
362     OneKeeper();
363 }
364
365 module ButtonPlanForDemo(colour, z, deep, cut){
366   color(colour)
367     translate([0,0,z])
368     ButtonPlan(8, deep, cut);
369 }
370
371 module DemoProfiles(){ ////toplevel
372   LidEdgeProfile();
373   %EdgeProfile();
374   KeeperProfile();
375   translate([0,0,-1]) color("black") KeeperProfile(1);
376
377   translate([20,0]) {
378     LidEdgeProfile();
379     %EdgeProfile();
380
381     demopoint_QR = [ bppS[0], bppQ[1] - 0.1];
382   
383     color("blue") ButtonCoverProfile();
384     color("red") {
385       rectfromto(bppQ, demopoint_QR);
386       rectfromto(bppR, demopoint_QR);
387     }
388   }
389
390   translate([-20,0]) {
391     ButtonPlanForDemo("grey", -1, 0,1);
392     ButtonPlanForDemo("blue", -2, 1,0);
393     ButtonPlanForDemo("red",  -3, 1,1);
394   }
395 }
396
397 //EdgeProfile();
398 //KeeperProfile();
399 //CaseBase();
400 //%Case();
401 //Keeper();
402 //LidEdgeProfile();
403 //KeeperProfile();
404 //DemoProfiles();