chiark / gitweb /
29cbdb1c5956764639e064217a9de979ed9bfdf1
[reprap-play.git] / fairphone-case.scad
1 // -*- C -*-
2
3 include <utils.scad>
4
5 phone = [ 75.0, 145.0 ];
6
7 bumper = [ 0.250, -0.025 ];
8 // ^ One side.  Overall size is increased by twice this.
9 // If no bumpers, is the gap around the phone.
10
11 phone_cnr_rad = 6.0;
12
13 button_cutout_depth = 9;
14
15 phone_edge_thick = 9.0;
16 phone_total_thick = 12.0;
17 phone_backside_slope_inner = 1.5; // larger means shallower
18 phone_backside_slope_outer = 1.0; // larger means shallower
19
20 camera_pos_tl = [  6.450, 12.750 ]; // measured from tl corner
21 camera_pos_br = [ 22.300, 37.600 ]; // tl/br as seen from back
22
23 jack_pos = [ 13.92, 7.96 ];
24 jack_dia = 9.1 + .5; // some jack I had lying around
25
26 noisecancelmic_pos = [ 19.54, 7.37 ];   // from rhs
27 noisecancelmic_dia = 1.75;
28
29 fingerpushhole_dias = [ 15, 18 ];
30
31 rearspeaker_pos_bl = [ 12.64, 18.72 ];
32 rearspeaker_size   = [  3.76,  7.36 ];
33
34 microusb_above = 3.27 - 0.25;
35 microusb_below = 0.0;
36 microusb_width = 16.12 + 0.25;
37
38 case_th_bottom = 2.5;
39 case_th_lid = 2.5;
40 case_th_side = 2;
41 case_th_lip = 1.2;
42
43 case_struts_count = 6;
44 case_struts_solid_below = 1.00;
45 case_struts_solid_above = 0.75;
46 case_struts_width = 0.10;
47
48 keeper_th_z = 0.75;
49 keeper_th_x = 0.75;
50 keeper_inner_width = 2.75;
51 keeper_inner_height = 2.75;
52 keeper_slant_slope = 2; // larger means steeper
53
54 keeper_gap_z_top = 0.25;
55 keeper_gap_z_bot = 0.75;
56 keeper_gap_x     = 0.25;
57 keeper_gap_x_holes = 0.75;
58
59 case_lip = 1.25;
60
61 lid_gap_x = 0.25;
62 lid_gap_z = 0.25;
63 lid_lip = 1.75;
64
65 catch_slop = 0.25;
66
67 foldover_gap = 0.50;
68 foldover_lever_gap = 0.50;
69
70 hingescrew_shaft_dia = 2.0 + 0.25; // M2 x 12mm machine screw
71 hingescrew_shaft_len = 12;
72 hingescrew_nut_thick = 1.93 + 0.20; // incl. washer
73 hingescrew_nut_dia = 4.72 + 0.50; // washer, actually
74 hingescrew_head_th = 1.38 + 0.75;
75 hingescrew_head_dia = 3.92;
76 lever_cover_th = 0.75;
77 hingemount_th = 2.5;
78
79 $fa = 5;
80 $fs = 0.1;
81
82 button_l_fudge = 4.4;
83 buttonishleg_default_l_is_fudge = 10;
84
85 hinge_base_slope = 1.5; // bigger is steeper
86
87 strut_min_at_end = 1.5;
88
89 hinge_x_gap = 0.125;
90 hinge_x_postscrew_gap = 0.75;
91 hinge_x_arms_gap = 0.35;
92 hinge_r_arms_gap = 0.55;
93
94 rearspeaker_gap    = [ 1.0, 1.0 ]; // each side
95
96 catch_len = 7.5;
97 catch_width = 15;
98 catch_thickness = 1.0;
99
100 catch_depth = 1.25;
101 catch_height = 0.35;
102 catch_finger_height = 1.5;
103 catch_finger_depth = 2.5;
104
105 // ---------- calculated ----------
106
107 phone_width =  (phone + bumper*2)[0];
108 phone_height = (phone + bumper*2)[1];
109
110 inside_br = [phone_width, -phone_height];
111
112 //echo(camera_pos_tl + bumper,
113 //     camera_pos_br + bumper);
114
115 // ----- could be changed -----
116 lid_buttoncover_gap = lid_gap_x;
117 lid_buttoncover_overlap = case_th_lip + keeper_gap_z_top;
118
119 phone_backside_slope_thick = phone_total_thick - phone_edge_thick;
120
121 //lid_lip_overlap_width xxx bad name = ;
122 //lid_lip_inner_slope = [ 5, 5 ]; // xxx
123
124 epp0 = [0,0];
125 epp1 = [0, -phone_edge_thick];
126 epp2i = epp1 + phone_backside_slope_thick * [ phone_backside_slope_inner, -1 ];
127 epp2o = epp1 + phone_backside_slope_thick * [ phone_backside_slope_outer, -1 ];
128 epp3 = epp2i + [10, 0];
129 epp5 = epp0 + [0,1] * (keeper_th_z + keeper_gap_z_top + case_lip);
130 epp4 = epp5 + [-1,0] * case_th_side;
131
132 kppe = [0,0];
133 kppd = kppe + [1,0] * keeper_inner_width;
134 kppc = kppd + [0,1] * keeper_th_z;
135 kppb = [ kppe[0] - keeper_th_x, kppc[1] ];
136 kppf = kppe - [0,1] * keeper_inner_height;
137 kppa = [ kppb[0], kppf[1] ];
138
139 lpp10 = [ epp5[0] + lid_gap_x, kppc[1] + lid_gap_z ];
140 lpp11 = [ lpp10[0],            epp5[1] + lid_gap_z ];
141
142 lp_r12 = case_th_lid - (lpp11[1] - lpp10[1]);
143
144 lpp12 = [ epp4[0] + lp_r12,    lpp11[1] ];
145 lpp13 = [ lpp12[0],            lpp12[1] + lp_r12 ];
146
147 // button profile
148 bppM = epp4 + [0,5];
149 bppN = [ 0.5 * (epp0[0] + epp4[0]), bppM[1] ];
150 bppR = [ bppN[0] + lid_buttoncover_gap, -button_cutout_depth ];
151 bppS = [ epp1[0], bppR[1] ];
152 bppQ = [ bppM[0], bppR[1] - lid_buttoncover_overlap ];
153 bppP = bppQ + [0,1] * lid_buttoncover_gap;
154 bppO = [ bppN[0], bppP[1] ];
155 bppL = lpp10 + [5,0];
156 bppK = [ bppL[0], bppN[1] ];
157 bppJ = [ bppN[0], bppL[1] ];
158
159 // hinge plan
160 hp_rn = hingescrew_nut_dia/2;
161 hp_r2_min = hp_rn + lever_cover_th;
162 hp_rs = hingescrew_shaft_dia/2;
163 hp_r1_min = hp_rs + hingemount_th;
164
165 hp_r1 = max(hp_r1_min, hp_r2_min);
166 hp_r2 = hp_r1;
167
168 hppU = lpp13;
169 hppS = epp2o + [0,-1] * case_th_bottom;
170 hp_k = 0.5 * (hppU[1] - hppS[1] + foldover_gap);
171
172 hppM = [ epp4[0] - foldover_lever_gap - hp_r2,
173          0.5 * (hppU + hppS)[1] ];
174 hppT = [ hppM[0], hppU[1] - hp_r1 ];
175 hppB = hppT + [0,-1] * hp_k;
176
177 hppE_y = epp2o[1] - case_th_bottom + hp_r1;
178 hppE_x = hppB[0] + (hppB[1] - hppE_y) * hinge_base_slope;
179 hppE = [ hppE_x, hppE_y ];
180
181 // hinge elevation x coords
182
183 hingescrew_portion_len =
184   0.5* (hingescrew_shaft_len - hingescrew_nut_thick - hinge_x_gap);
185
186 hex20 = max(epp2o[0],
187             phone_cnr_rad,
188             kppd[0] + hingescrew_head_th + keeper_gap_x_holes);
189 hex21 = hex20 + hingescrew_portion_len;
190 hex22 = hex21 - hinge_x_gap;
191 hex23 = hex22 + hingescrew_portion_len;
192 hex24 = hex20 + hingescrew_shaft_len + hinge_x_postscrew_gap;
193 echo(hex20, hex21, hex22, hex23, hex24);
194 echo(hingescrew_portion_len);
195
196 // catch
197
198 cppJ = [ epp4[0] + catch_thickness, lpp10[1] ];
199 cppA = cppJ + [lid_gap_x, -lid_gap_z];
200 cppB = [ epp0[0], cppA[1] ];
201 cppP = [ epp4[0], cppJ[1] ];
202
203 cppS = cppJ + [0,-1] * catch_len;
204 cppD = [ cppA[0], cppS[1] + catch_slop ];
205 cppC = [ cppB[0], cppD[1] ];
206 cppT = cppS + [1,0] * catch_depth;
207 cppU = cppT + [0,-1] * catch_height;
208 cppV = [ cppS[0], cppU[1] - catch_depth ];
209
210 cppR = 0.5*(cppP + cppJ);
211
212 cp_rQ = 0.5 * (cppJ[0] - cppP[0]);
213 cppQ = [ cppR[0],
214          cppV[1] - (catch_finger_height - cp_rQ) ];
215 cppF = [ cppV[0] + catch_finger_depth, cppC[1] ];
216
217 // ---------- modules ----------
218
219 module KeeperProfile(slant=0){
220   use_e = kppe + [0,-1] * slant * keeper_inner_width / keeper_slant_slope;
221   polygon([use_e, kppd, kppc, kppb, kppa, kppf]);
222 }
223
224 module EdgeProfile(){
225   difference(){
226     hull(){
227       translate(epp3) square(case_th_bottom*2, center=true);
228       circleat(epp2o, r=case_th_bottom);
229       circleat(epp1, r=case_th_side);
230       rectfromto(epp0, epp4);
231     }
232     polygon([ epp5 + [0,10],
233               epp1,
234               epp2i,
235               epp3 + [10,0] ]);
236   }
237 }
238
239 module LidEdgeProfile(){
240   polygon([ lpp10,
241             lpp11,
242             lpp12,
243             lpp13,
244             lpp13 + [10, 0],
245             lpp10 + [10, 0]
246             ]);
247   intersection(){
248     circleat(lpp12, r=lp_r12);
249     rectfromto( lpp12 + [-10,   0],
250                 lpp12 + [+10, +10] );
251   }
252 }
253
254 module ButtonCoverProfile(){
255   intersection(){
256     polygon([ bppM, bppP, bppO, bppJ, bppL, bppK ]);
257     hull(){
258       EdgeProfile();
259       LidEdgeProfile();
260     }
261   }
262 }
263
264 module ButtonPlan(l, deep, cut){
265   epsilon =
266     (cut  ? 0 : lid_buttoncover_gap);
267
268   delta =
269     (deep ? lid_buttoncover_overlap : 0);
270
271   C = [0,0]; // by definition
272   T = [ 0, epp4[1] ];
273   G = T + [0,10];
274
275   B0 = C + [0,-1] * button_cutout_depth;
276   B1 = B0 + [0,1] * epsilon;
277
278   r0 = 0.5 * (T[1] - B0[1]);
279   A = [  -(l + button_l_fudge)/2 + r0, 0.5 * (T[1] + B0[1]) ];
280   H = A + [0,-1] * delta;
281
282   D = A + [-2,0] * r0;
283   F = D + [0,10];
284
285   E0 = 0.5 * (D + A);
286   E1 = E0 + [1,0] * epsilon;
287
288   I0 = [ E0[0], H[1] ];
289   I1 = [ E1[0], H[1] ];
290
291   hull(){
292     for (m=[0,1]) mirror([m,0])
293       circleat(H, r0 - epsilon);
294   }
295   for (m=[0,1]) mirror([m,0]) {
296     difference(){
297       polygon([ E1,
298                 I1,
299                 H,
300                 B1,
301                 G,
302                 F,
303                 D
304                 ]);
305       circleat(D, r0 + epsilon);
306     }
307   }
308 }
309
310 module CatchCatchProfile(){
311   hull(){
312     for (c=[ cppR, cppQ ])
313       circleat(c, cp_rQ);
314   }
315   hull(){
316     circleat(lpp12, lp_r12);
317     circleat(lpp12 + [5,0], lp_r12);
318     rectfromto(cppP, cppP + [5,0.1]);
319   }
320   polygon([cppJ, cppS, cppT, cppU, cppV, cppQ, cppR]);
321 }
322
323 module CatchCutProfile(){
324   polygon([ cppB,
325             cppA,
326             cppD,
327             cppF,
328             cppF + [0,-10],
329             cppF + [-10,-10],
330             lpp12 + [-10,0],
331             lpp12 + [10,0]
332             ]);
333 }
334
335 module Flip_rhs(yn=[0,1]) {
336   for ($rhsflip=yn) {
337     translate([phone_width/2, 0, 0])
338       mirror([$rhsflip,0,0])
339       translate([-phone_width/2, 0, 0])
340       children();
341   }
342 }
343
344 module Flip_bot(yn=[0,1]) {
345   for ($botflip=yn) {
346     translate([0, -phone_height/2, 0])
347       mirror([0, $botflip, 0])
348       translate([0, phone_height/2, 0])
349       children();
350   }
351 }  
352
353 module AroundEdges(fill_zstart, fill_th, fill_downwards=0){
354   // sides
355   Flip_rhs(){
356     translate([0, -phone_cnr_rad, 0])
357       rotate([90,0,0])
358       linear_extrude(height = phone_height - phone_cnr_rad*2)
359       children(0);
360   }
361   // corners
362   Flip_rhs() Flip_bot() {
363     translate([+1,-1] * phone_cnr_rad)
364       intersection(){
365         rotate_extrude()
366           intersection(){
367             mirror([1,0,0])
368               translate([-1,0] * phone_cnr_rad)
369               children(0);
370             rectfromto([0,-20],[10,20]);
371           }
372         translate([-10, 0, -20] + 0.01 * [+1,-1, 0] )
373           cube([10,10,40]);
374       }
375   }
376   // top and bottom
377   Flip_bot(){
378     translate([ phone_width - phone_cnr_rad, 0,0 ])
379       rotate([90,0,-90])
380       linear_extrude(height = phone_width - phone_cnr_rad*2)
381       children(0);
382   }
383   // fill
384   translate([0,0, fill_zstart])
385     mirror([0,0, fill_downwards])
386     linear_extrude(height = fill_th)
387     rectfromto([+1,-1] * phone_cnr_rad,
388                [phone_width, -phone_height] + [-1,+1] * phone_cnr_rad);
389 }
390
391 module CaseAperture(pos, dia, $fn) {
392   theta = 180/$fn;
393   translate([ pos[0] + bumper[0],
394               -epp2i[0],
395               -pos[1] ])
396     rotate([-90, theta, 0])
397     cylinder(r = dia/2 / cos(theta),
398              h = 60);
399 }
400
401 module SideButton(y, y_ref_sign, l){
402   // y_ref_sign:
403   //   +1  measured from top    of actual phone to top    of button
404   //   -1  measured from bottom of actual phone to bottom of button
405   //    0  y is centre of button in coordinate system
406   $button_l= l;
407   eff_y = y_ref_sign > 0 ?         -bumper [1] -y -l/2 :
408           y_ref_sign < 0 ? (-phone -bumper)[1] +y +l/2 :
409           y;
410   //echo(eff_y);
411   translate([0, eff_y, 0])
412     children();
413 }
414
415 module LidButtonishLeg(y, y_ref_sign, l=buttonishleg_default_l_is_fudge) {
416   $button_leg_only = true;
417   SideButton(y, y_ref_sign, l) children();
418 }
419
420 module Buttons(){
421   Flip_rhs(1) SideButton(15.580, +1, 8.9) children(); // power
422   Flip_rhs(1) SideButton(48.700, -1, 8.920) children(); // camera
423   Flip_rhs(0) SideButton(30.800, +1, 21.96) children(); // volume
424   Flip_rhs(   ) LidButtonishLeg(20, -1) children();
425 //  Flip_rhs(0) LidButtonishLeg(20, +1, 20) children();
426 }
427
428 module Struts(x_start, z_min, th){
429   // if th is negative, starts at z_min and works towards -ve z
430   // and object should then be printed other way up
431   for (i= [1 : 1 : case_struts_count]) {
432     translate([0,
433                0,
434                z_min])
435       mirror([0,0, th<0 ? 1 : 0])
436       translate([0,
437                  -phone_height * i / (case_struts_count+1),
438                  case_struts_solid_below])
439       linear_extrude(height= abs(th)
440                      -(case_struts_solid_below+case_struts_solid_above))
441       rectfromto([               x_start, -0.5 * case_struts_width ],
442                  [ phone_width - x_start, +0.5 * case_struts_width ]);
443   }
444 }
445
446 module OrdinaryRearAperture(rhs,bot, pos){
447   Flip_rhs(rhs) Flip_bot(bot)
448     linextr(-20, 20)
449     mirror([0,1])
450     translate(pos + bumper)
451     children();
452 }
453
454 module MicroUSB(){
455   Flip_bot(1){
456     rotate([90,0,0])
457       mirror([0,0,1])
458       linextr(-epp2i[0], 60)
459       translate([0.5 * phone_width, 0, 0])
460       rectfromto([-microusb_width/2, epp2i[1] + microusb_below],
461                  [+microusb_width/2, epp0[1] + -microusb_above]);
462   }
463 }
464
465 module OrdinaryRearApertures(){
466   // rear speaker
467   OrdinaryRearAperture(1,1, rearspeaker_pos_bl)
468     rectfromto(-rearspeaker_gap,
469                rearspeaker_size + rearspeaker_gap);
470
471   // finger hole to remove phone
472   OrdinaryRearAperture(1,0, [ fingerpushhole_dias[0]/2 + epp2i[0],
473                               phone[1]/2 ])
474     scale(fingerpushhole_dias)
475     circle(r= 0.5 );
476 }
477
478 module RearCameraAperture(){
479   Flip_rhs(1)
480     mirror([0, 0, 1])
481     linear_extrude(height = 20)
482     mirror([0, 1, 0])
483     translate(bumper)
484     rectfromto(camera_pos_tl, camera_pos_br);
485 }
486
487 module HingeLidProfile(){
488   hull(){
489     circleat(hppT, hp_r1);
490     circleat(lpp12, lp_r12);
491     polygon([lpp10,
492              lpp13 + [2,0],
493              lpp12,
494              hppT]);
495   }
496 }
497
498 module HingeBaseProfile(){
499   difference(){
500     hull(){
501       circleat(hppB, hp_r1);
502       circleat(hppE, hp_r1);
503       circleat(epp2o, case_th_bottom);
504       circleat(hppB + [10,0], hp_r1);
505     }
506     polygon([epp5, epp1, epp2i, epp3, bppL]);
507   }
508 }
509
510 module HingeLeverOuterProfile(){
511   hull(){
512     circleat(hppT, hp_r2);
513     circleat(hppB, hp_r2);
514   }
515 }
516
517 module HingeLeverInnerProfile(){
518   for (c = [hppT, hppB]) {
519     hull()
520       for (x=[0,20])
521         translate([x,0])
522           circleat(c, hp_rn);
523         circleat(hppB, hp_rn);
524   }
525 }
526
527 module Flip_hinge(){
528   hinge_origin = [0, -(phone_height - hppB[0]), hppB[1]];
529   translate(hinge_origin)
530     rotate([180,0,0])
531     translate(-hinge_origin)
532     children();
533 }
534
535 module HingePortion(x0,x1){
536   Flip_rhs() Flip_bot(1)
537     translate([x0,0,0])
538     mirror([1,0,0])
539     rotate([90,0,-90])
540     linear_extrude(height=x1-x0)
541     children(0);
542 }
543
544 module CatchPortion(width){
545   translate([phone_width/2, 0,0])
546     rotate([90,0,-90])
547     linextr(-width/2, width/2)
548     children(0);
549 }
550
551 module CaseBase(){
552   AroundEdges(epp3[1], case_th_bottom, 1)
553     EdgeProfile();
554 }
555
556 module Case(){ ////toplevel
557   difference(){
558     union(){
559       CaseBase();
560
561       // ledge (fixed keeper)
562       intersection(){
563         rotate([90, 0, 0])
564           linear_extrude(height = phone_height + phone_cnr_rad * 2)
565           KeeperProfile(1);
566
567         // outline of the whole case, to stop it protruding
568         translate([0,0, -25])
569           linear_extrude(height = 50)
570           hull()
571           // Flip_rhs() // actually, we only care about the LH
572           Flip_bot()
573           circleat([+1,-1] * phone_cnr_rad, phone_cnr_rad + case_th_side/2);
574       }
575
576       // hinge
577       HingePortion(hex20, hex21) HingeBaseProfile();
578     }
579
580     // slot for keeper
581     Flip_rhs(1)
582       translate([0, -phone_cnr_rad, 0])
583       rotate([90, 0, 0])
584       linear_extrude(height = phone_height + phone_cnr_rad * 2)
585       minkowski(){
586         KeeperProfile();
587         rectfromto([ -keeper_gap_x,    -keeper_gap_z_bot ],
588                    [ keeper_gap_x_holes,    +keeper_gap_z_top ]);
589       }
590
591     // front camera
592     RearCameraAperture();
593
594     // struts (invisible, because they're buried in the case)
595     Struts(epp2i[0], epp2i[1] - case_th_bottom, case_th_bottom);
596
597     Buttons(){
598       mirror([1,0,0])
599         rotate([90,0,90]) {
600           intersection(){
601             translate([0,0,-10])
602               linear_extrude(height= 20)
603               ButtonPlan($button_l, 0,1);
604             if ($button_leg_only)
605               rotate([-90,90,0])
606                 translate([phone_width/2, -400, kppe[1]])
607                 mirror([$rhsflip,0,0]) cube([400, 800, 50]);
608           }
609           translate([0,0, -bppR[0]])
610             linear_extrude(height= 20)
611             ButtonPlan($button_l, 1,1);
612         }
613     }
614
615     // apertures along top edge
616     CaseAperture(jack_pos, jack_dia, 8);
617     Flip_rhs(1)
618       CaseAperture(noisecancelmic_pos, noisecancelmic_dia, 20);
619
620     OrdinaryRearApertures();
621
622     MicroUSB();
623
624     // gaps for the lid's hinge arms
625     HingePortion(hex20 - hinge_x_arms_gap,
626                  hex21 + hinge_x_arms_gap)
627       minkowski(){
628         HingeLidProfile();
629         circle(r= hinge_r_arms_gap, $fn= 8);
630       }
631
632     // screw holes in the hinge arms
633     HingeScrews();
634   }
635 }
636
637 module Lid(){ ////toplevel
638   difference(){
639     union(){
640       AroundEdges(lpp10[1], lpp13[1] - lpp10[1], 0)
641         LidEdgeProfile();
642
643       // button covers
644       Buttons(){
645         intersection(){
646           rotate([90,0,90])
647             translate([0,0,-10])
648             linear_extrude(height= 20)
649             ButtonPlan($button_l, 1,0);
650           rotate([90,0,0])
651              translate([0,0,-100])
652             linear_extrude(height= 200)
653             ButtonCoverProfile();
654         }
655       }
656
657       // hinge arms
658       HingePortion(hex20, hex21) HingeLidProfile();
659
660       // catch
661       CatchPortion(catch_width)
662         CatchCatchProfile();
663     }
664     Struts(lpp10[0] + strut_min_at_end, lpp13[1], -case_th_lid);
665
666     // screw holes in the hinge arms
667     HingeScrews();
668   }
669 }
670
671 module HingeLever(){ ////toplevel
672   difference() {
673     // outer body, positive
674     HingePortion(hex22, hex22 + phone_width/2)
675       HingeLeverOuterProfile();
676
677     // space for the screws
678     HingePortion(hex23, hex24)
679       HingeLeverInnerProfile();
680
681     // bores for the screws
682     HingeScrews();
683
684     // space for the charging cable
685     MicroUSB();
686     Flip_hinge() MicroUSB();
687   }
688 }
689
690 module HingeLeverPrint(){ ////toplevel
691   rotate([90,0,0])
692     HingeLever();
693 }
694
695 module TestSelectLength(){
696   translate([-30, -200, -20])
697     cube([30 + 15, 250, 40]);
698 }
699
700 module TestLength(){ ////toplevel
701   intersection(){
702     Case();
703     TestSelectLength();
704   }
705 }
706
707 module TestLengthRight(){ ////toplevel
708   intersection(){
709     Case();
710     Flip_rhs(1)
711       TestSelectLength();
712   }
713 }
714
715 module TestSelectWidth(){
716   translate([-30, -(phone_height - 25), -20])
717     mirror([0, 1, 0])
718     cube([200, 50, 40]);
719 }
720
721 module TestWidth(){ ////toplevel
722   intersection(){
723     Case();
724     TestSelectWidth();
725   }
726 }
727
728 module TestLidWidthPrint(){ ////toplevel
729   rotate([0,180.0]) intersection(){
730     Lid();
731     TestSelectWidth();
732   }
733 }
734
735 module TestSelectRearAperture(){
736   minkowski(){
737     union() children();
738     translate([20, 0,0])
739       cube([42, 2, 1], center=true);
740   }
741 }
742
743 module TestSelectCamera(){
744   minkowski(){
745     TestSelectRearAperture()
746       RearCameraAperture();
747     cube([0.1, 50, 0.1]);
748   }
749 }
750
751 module TestSelectOrdinaryRearApertures(){
752   TestSelectRearAperture()
753     OrdinaryRearApertures();
754 }
755
756 module TestCamera(){ ////toplevel
757   intersection(){
758     Case();
759     TestSelectCamera();
760   }
761 }
762
763 module TestLidByCamera(){ ////toplevel
764   intersection(){
765     Lid();
766     TestSelectCamera();
767   }
768 }
769
770 module TestLidByCameraPrint(){ ////toplevel
771   rotate([180,0,0]) TestLidByCamera();
772 }
773
774 module DemoByCamera(){ ////toplevel
775   color("blue") TestLidByCamera();
776   color("red")  TestCamera();
777 }
778
779 module OneKeeper(){ ////toplevel
780   translate([0, -phone_cnr_rad, 0])
781     rotate([90, 0, 0])
782     linear_extrude(height = phone_height - phone_cnr_rad * 2)
783     KeeperProfile();
784 }
785
786 module OneKeeperPrint(){ ////toplevel
787   rotate([0,180,0])
788     OneKeeper();
789 }
790
791 module LidPrint(){ ////toplevel
792   rotate([0,180,0])
793     Lid();
794 }
795
796 module TestSelectFrame(){
797   include = [1,-1] * (epp2i[0] + 4);
798
799   difference(){
800     cube(1000, center=true);
801     translate([0,0, -100])
802       linear_extrude(height=200)
803       rectfromto(include,  inside_br - include);
804   }
805 }
806
807 module TestFrameCase(){ ////toplevel
808   intersection(){
809     Case();
810     union(){
811       TestSelectFrame();
812       TestSelectCamera();
813       TestSelectOrdinaryRearApertures();
814     }
815   }
816 }
817
818 module TestFrameLidPrint(){ ////toplevel
819   rotate([0,180,0]) intersection(){
820     Lid();
821     TestSelectFrame();
822   }
823 }
824
825 module Keeper(){ ////toplevel
826   Flip_rhs()
827     OneKeeper();
828 }
829
830 module ButtonPlanForDemo(z, deep, cut){
831   translate([0,0,z])
832     ButtonPlan(8, deep, cut);
833 }
834
835 module HingeScrews(){
836   Flip_rhs() Flip_bot(1){
837     for (c= [ hppT, hppB ])
838       translate([ hex20,
839                   -c[0],
840                   c[1] ]){
841         rotate([0,90,0])
842           translate([0,0,-.2])
843           cylinder( r= hingescrew_shaft_dia/2,
844                     h = hingescrew_shaft_len+0.2 );
845         rotate([0,-90,0])
846           translate([0,0,+.1])
847           cylinder( r= hingescrew_head_dia/2, h = hingescrew_head_th );
848       }
849   }
850 }
851
852 module DemoFrame(){ ////toplevel
853   color("red") TestFrameCase();
854   color("blue") intersection(){ Lid(); TestSelectFrame(); }
855   color("black") HingeScrews();
856   %HingeLever();
857 }
858
859 module DemoHingedFrame(){ ///toplevel
860   color("red") TestFrameCase();
861   translate([0,0, -2*hp_k])
862   color("blue") intersection(){ Lid(); TestSelectFrame(); }
863
864   Flip_hinge(){
865     color("orange") HingeLever();
866     color("black") HingeScrews();
867   }
868 }
869
870 module DemoHinge(){ ////toplevel
871   DemoFrame();
872   translate([0,0, -hp_k*3])
873     DemoHingedFrame();
874 }
875
876 module DemoProfiles(){ ////toplevel
877   LidEdgeProfile();
878   %EdgeProfile();
879   KeeperProfile();
880   translate([0,0,-1]) color("black") KeeperProfile(1);
881
882   translate([20,0]) {
883     LidEdgeProfile();
884     %EdgeProfile();
885
886     demopoint_QR = [ bppS[0], bppQ[1] - 0.1];
887   
888     color("blue") ButtonCoverProfile();
889     color("red") {
890       rectfromto(bppQ, demopoint_QR);
891       rectfromto(bppR, demopoint_QR);
892     }
893   }
894
895   translate([-20,0]) {
896     color("black") ButtonPlanForDemo(-2, 0,1);
897     color("red" )  ButtonPlanForDemo(-4, 1,1);
898     color("blue")  ButtonPlanForDemo(-6, 1,0);
899   }
900
901   translate([0, -30]) {
902     %LidEdgeProfile();
903     %EdgeProfile();
904     color("blue") HingeLidProfile();
905     color("red")  HingeBaseProfile();
906     color("black") translate([0,0,-2]) HingeLeverOuterProfile();
907     color("orange") translate([0,0,-1]) HingeLeverInnerProfile();
908   }
909
910   translate([20,-30]) {
911     %EdgeProfile();
912     %LidEdgeProfile();
913     //translate([0,0,1]) CatchCutProfile();
914     color("blue") CatchCatchProfile();
915     color("red") difference(){ EdgeProfile(); CatchCutProfile(); }
916   }
917 }
918
919 //EdgeProfile();
920 //KeeperProfile();
921 //CaseBase();
922 //%Case();
923 //Keeper();
924 //LidEdgeProfile();
925 //KeeperProfile();
926 //DemoProfiles();