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