chiark / gitweb /
3373304edeabe84936dd5ba9341e784d93ff8ba7
[reprap-play.git] / fairphone-case.scad
1 // -*- C -*-
2
3 // Hard case for Fairphone 2
4 //
5 //  Copyright 2018 Ian Jackson.  There is NO WARRANTY.
6 //  See below for full licensing and disclaimer.
7 //
8 // Instructions
9 //
10 //  1. You will want to git clone this repository.
11 //
12 //  2. Decide about the notification LED aperture. See the variable
13 //     led_window_style, below.  The default here is "ad-hoc
14 //     multi-colour", which can produces a translucent (clear-ish)
15 //     window set into the lid, even on a single-nozzle printer.
16 //     See "Ad-hoc multi-colour", below.
17 //
18 //  3. use "make" to generate the necessary files:
19 //
20 //     make -j8 fairphone-case.auto.scads `for f in   \
21 //        HingePrint        \
22 //        LidWindowPrint    \
23 //        LidPrint          \
24 //        OneKeeperPrint    \
25 //        Case              \
26 //     ; do echo fairphone-case,$f.auto.stl; done`
27 //
28 //  4. Print them.  Case and OneKeeperPrint should probably be
29 //     the same colour.
30 //
31 //     For Lid and LidWindowPrint, if you are doing ad-hoc
32 //     multi-colour:
33 //        i.   Set up for clear filament
34 //        ii.  Print LidWindowPrint.  Wait for it to finish.
35 //             It won't take long.  As soon as it finishes, tell
36 //             your printer to warm up (so that in fact it does
37 //             not cool down).
38 //        iii. Leaving the output so far on the printbed, reload
39 //             your printer with the main lid colour.
40 //        iv.  Print LidPrint.  You can let this go unattended.
41 //
42 //  5. Assemble the hinge.  You will need 4x M2 12mm machine screws
43 //     and 8x M2 full nuts.
44 //
45 //     Make sure you get the hinge the right way round.  If you're not
46 //     sure, run
47 //         openscad fairphone-case,DemoHinge.auto.scad
48 //     to see an assembly diagram.
49 //
50 //     The nuts recess into the hinge.  You will want very fine
51 //     pliers.  As you screw each screw in, add the second nut when
52 //     the screw thread emerges from the first - this will be a
53 //     locknut.  Screw each screw to an appropriate tightness for the
54 //     hinge stiffness.  You want the lid-side hinge to be stiffer as
55 //     that makes closing the case work better.
56 //
57 //     When you have the stiffness right, tighten the locknuts onto
58 //     each first nut.
59 //
60 //  6. In use:
61 // 
62 //      - To put the phone in, drop its RH side into the RH side of
63 //        the case.  Then feed the keeper through the small hole.
64 //        Feed it right through.
65 //
66 //      - The optional prop can be used to prop the phone up (in
67 //        portrait orientation only right now).  See
68 //            openscad fairphone-case,DemoPropAngles.auto.scad
69 //
70 // Ad-hoc multi-colour
71 //     
72 //  This file is set up to let you make a translucent window using a
73 //  single-extruder printer, using a "two print run" technique.  This
74 //  works well with our Lulzbot TAZ 5 and Aleph Objects' version of
75 //  Cura.  If you are using a different printer, you may need to
76 //  adjust the parameters or try a different technique.  In particular,
77 //      initial_layer_thick
78 //         set so that the window is one layer thick
79 //      initial_layer_width
80 //         set so that the slicer draws a rectangle around the whole
81 //         object, rather than putting a "skirt" or anything inside
82 //
83 //  If you have a dual-extruder printer, you can set led_window_style
84 //  to 2 and do a single print of LidPrint and LidWindowPrint.
85 //
86 //  Alternatively you can set it to 1 (just a hole) or 0 (no hole).
87 //
88 //  Thanks to Clare Boothby for the ad-hoc multi-colour technique (and
89 //  the parameters for our Lulzbot TAZ 5 and Aleph Objects's Cura).
90 //
91 // Other phones
92 //
93 //  It might well be possible to adapt this file for other phones.
94 //  If you do, let me know how you get on.
95 //
96 //
97 // AUTHORSHIP, COPYRIGHT, LICENCE, AND LACK OF WARRANTY
98 //
99 //   Copyright (C)2018 Ian Jackson.
100 //
101 //    This program for generating a 3D model is free software: you can
102 //    redistribute it and/or modify it under the terms of the GNU
103 //    General Public License as published by the Free Software
104 //    Foundation, either version 3 of the License, or (at your option)
105 //    any later version.
106 //
107 //    This program is distributed in the hope that it will be useful,
108 //    but WITHOUT ANY WARRANTY; without even the implied warranty of
109 //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
110 //    GNU General Public License for more details.
111 //
112 //    You should have received a copy of the GNU General Public
113 //    License along with this program.  If not, see
114 //    <http://www.gnu.org/licenses/>.
115 //
116 //  In particular DO NOT BLAME ME IF THIS CASE DOES NOT ADEQUATELY
117 //  PROTECT YOUR PHONE !  It is your responsibility to decide whether
118 //  this case will meet your needs.
119
120 include <utils.scad>
121 include <funcs.scad>
122
123 phone = [ 75.0, 145.0 ];
124
125 prop_buildout_less = 3;
126
127 prop_angles = [ 15, 30, 45, 60 ];
128
129 bumper = [ 0.250, -0.025 ];
130 // ^ One side.  Overall size is increased by twice this.
131 // If no bumpers, is the gap around the phone.
132
133 enable_support = 1;
134
135 led_window_style = 3;
136 // 0: no window
137 // 1: simply an opening
138 // 2: opening with separate cover model, for printing in clear (two colour)
139 // 3: like 2 but one-layer window for ad-hoc multi-colour
140
141 initial_layer_thick = 0.400; // ^ needed for mode 3 only
142 initial_layer_width = 0.750; // ^ needed for mode 3 only
143 multicolour_gap = 0.15; // each side
144
145 phone_cnr_rad = 6.0;
146 phone_rim_depth = 0.80; // includes allowance for a screen protector
147
148 button_cutout_depth = 9;
149
150 phone_edge_thick = 9.0;
151 phone_total_thick = 12.0;
152 phone_backside_slope_inner = 1.5; // larger means shallower
153 phone_backside_slope_outer = 1.0; // larger means shallower
154
155 camera_pos_tl = [  6.450, 12.750 ]; // measured from tl corner
156 camera_pos_br = [ 22.300, 37.600 ]; // tl/br as seen from back
157
158 jack_pos = [ 13.83, 8.485 ];
159 jack_dia = 10.64 + .5; // some jack I had lying around
160
161 led_pos = [ 13.98, 10.00 ];
162 led_aperture = 9;
163 led_window_ledge = 0.75; // each side
164
165 noisecancelmic_pos = [ 19.54, 7.37 ];   // from rhs
166 noisecancelmic_dia = 4.00;
167
168 //fingerpushhole_dias = [ 15, 18 ];
169 fingerpushhole_dias = [];
170
171 lanyard_half_dia = 1.15;
172 lanyard_entry_rel_breadth = 2;
173 rearspeaker_pos_bl = [ 12.64, 18.72 ];
174 rearspeaker_size   = [  3.76,  7.36 ];
175
176 microusb_above = 3.27 - 0.25;
177 microusb_below = 0.0;
178 microusb_width = 16.12 + 1.25;
179
180 case_th_bottom = 2.5;
181 case_th_lid = 3.0;
182 case_th_side = 2.3;
183 case_th_lip = 1.2;
184
185 lid_screen_gap_extra = .66;
186
187 case_struts_count = 6;
188 case_struts_solid_below = 1.00;
189 case_struts_solid_above = 0.75;
190 case_struts_width = 0.10;
191
192 keeper_th_z = 0.75;
193 keeper_th_x = 0.75;
194 keeper_inner_width = 2.75;
195 keeper_inner_height = 2.75;
196 keeper_slant_slope = 2; // larger means steeper
197
198 keeper_gap_z_top = 0.25;
199 keeper_gap_z_bot = 0.75;
200 keeper_gap_x     = 0.25;
201 keeper_gap_x_holes = 0.75;
202
203 keeper_side = 0; // 0 = lhs; 1 = rhs
204
205 case_lip = 1.25;
206
207 lid_gap_x = 0.25;
208 lid_gap_z = 0.25;
209 lid_lip = 1.75;
210 lid_edgepart_width = 5.0;
211 lid_buttoncover_thick = 1.3;
212
213 catch_slop = 0.50;
214
215 foldover_gap = 0.50;
216 foldover_lever_gap = 0.50;
217
218 // properties of the hinge fasteners
219 hingescrew_shaft_dia = 2.0 + 0.25; // M2 x 12mm machine screw
220 hingescrew_shaft_len = 12;
221 hingescrew_fasteners_extra_thick = 0.40;
222 // ^ amount of thread protruding if everything was completely nominal
223 //   and we are using two nuts
224 hingescrew_nut_access_dia = 4.72 + 0.50;
225 // ^ washer is 4.72 dia
226 //   also, want to get pliers or tiny spanner in to do up locknut
227 hingescrew_nut_across = 3.92 + 0.25; // incl. slop around recess slop
228 hingescrew_nut_thick = 1.93;
229 hingescrew_head_th = 1.38 + 0.75;
230 hingescrew_head_dia = 3.92;
231
232 hingescrew_nut_recess_portion = 2/3; // portion of nut in recess
233
234 lever_cover_th = 0.75;
235 hingemount_th = 2.5;
236 hingemount_wd = 4.8725;
237
238 $fa = 5;
239 $fs = 0.1;
240
241 button_l_fudge = 4.4;
242 buttonishleg_default_l_is_fudge = 10;
243
244 hinge_base_slope = 1.5; // bigger is steeper
245
246 strut_min_at_end = 1.5;
247
248 hinge_x_gap = 0.125;
249 hinge_x_postscrew_gap = 0.75;
250 hinge_x_arms_gap = 0.35;
251 hinge_r_arms_gap = 0.55;
252
253 rearspeaker_gap    = [ 2.0, 2.0 ]; // each side
254
255 catch_len = 7.5;
256 catch_width = 15;
257 catch_thickness = 1.0;
258 catch_side_gap = 0.75; // each side
259
260 catch_depth = 0.75;
261 catch_height = 0.35;
262 catch_finger_height = 1.5;
263 catch_finger_depth = 2.5;
264
265 catch_topcurve_r = 5.0;
266
267 prop_recess_under = 0.50;
268 prop_recess_slop = 0.200; // each side
269 prop_end_dia = 0.5;
270 prop_main_th = 3;
271 prop_taper_len = 6;
272 prop_main_width = 4;
273 prop_side_gap = 0.75; // each side
274 prop_lidrecess_behind = 0.75;
275 prop_caserecess_behind = 0.75;
276 prop_caserecess_taper = 0.45; // one side only
277 prop_prop_gap = 0.5;
278 prop_prong_heel_slope = 0.5;
279
280 lid_fold_clearance_antislop = 0.5;
281
282 // ---------- calculated ----------
283
284 phone_width =  (phone + bumper*2)[0];
285 phone_height = (phone + bumper*2)[1];
286
287 inside_br = [phone_width, -phone_height];
288
289 prop_prong_h = prop_main_th;
290
291 //echo(camera_pos_tl + bumper,
292 //     camera_pos_br + bumper);
293
294 // ----- could be changed -----
295 lid_buttoncover_gap = lid_gap_x;
296 lid_buttoncover_overlap = case_th_lip + keeper_gap_z_top;
297
298 phone_backside_slope_thick = phone_total_thick - phone_edge_thick;
299
300 //prop_lidrecess_depth = case_th_lid - prop_recess_under;
301
302 //prop_nose_len = case_th_lid - prop_recess_under;
303 //prop_recess_slope = tan(prop_max_angle); // bigger means steeper
304 //prop_recess_width = prop_main_th / cos(prop_max_angle) + prop_backfwd_gap;
305
306
307 //lid_lip_overlap_width xxx bad name = ;
308 //lid_lip_inner_slope = [ 5, 5 ]; // xxx
309
310 epp0 = [0,0];
311 epp1 = [0, -phone_edge_thick];
312 epp2i = epp1 + phone_backside_slope_thick * [ phone_backside_slope_inner, -1 ];
313 epp2o = epp1 + phone_backside_slope_thick * [ phone_backside_slope_outer, -1 ];
314 epp3 = epp2i + [10, 0];
315 epp5 = epp0 + [0,1] * (keeper_th_z + keeper_gap_z_top + case_lip);
316 epp4 = epp5 + [-1,0] * case_th_side;
317
318 kppe = [0,0];
319 kppd = kppe + [1,0] * keeper_inner_width;
320 kppc = kppd + [0,1] * keeper_th_z;
321 kppb = [ kppe[0] - keeper_th_x, kppc[1] ];
322 kppf = kppe - [0,1] * keeper_inner_height;
323 kppa = [ kppb[0], kppf[1] ];
324
325 lpp10 = [ epp5[0] + lid_gap_x, kppc[1] + lid_gap_z ];
326 lpp11 = [ lpp10[0],            epp5[1] + lid_gap_z ];
327
328 lpp14 = lpp10 + [1,0] * max(keeper_inner_width, lid_edgepart_width);
329 // exact x posn not very important; must extend past end of keeper
330
331 lpp15 = [ lpp14[0],
332           epp0[1] - phone_rim_depth + 1/2.5 * case_th_lid
333           + lid_screen_gap_extra ];
334 // ^ beam theory says to maximise force before contact,
335 //   the gap below the `beam' (the lid) must be 1/3
336 //   the thickness (ie the lid thickness) if the beam
337 //   is solid, or 1/2 if it has a top and bottom only.
338 //   ours is mostly solid.
339
340 lp_r12 = max(case_th_lid - (lpp11[1] - lpp15[1]),
341              case_th_lip);
342
343 lpp12 = [ epp4[0] + lp_r12,    lpp11[1] ];
344 lpp13 = [ lpp12[0],            lpp12[1] + lp_r12 ];
345
346 case_bottom_z = epp2o[1] - case_th_bottom;
347
348 // button profile
349 bppM = epp4 + [0,5];
350 bppN = [ bppM[0] + lid_buttoncover_thick, bppM[1] ];
351 bppR = [ bppN[0] + lid_buttoncover_gap, -button_cutout_depth ];
352 bppS = [ epp1[0], bppR[1] ];
353 bppQ = [ bppM[0], bppR[1] - lid_buttoncover_overlap ];
354 bppP = bppQ + [0,1] * lid_buttoncover_gap;
355 bppO = [ bppN[0], bppP[1] ];
356 bppL = lpp10 + [5,0];
357 bppK = [ bppL[0], bppN[1] ];
358 bppJ = [ bppN[0], bppL[1] ];
359 bppU = [ bppJ[0], lpp12[1] ];
360 bppV = lpp11;
361 bppW = lpp10;
362
363 echo("BUTTON COVER TH", bppO[0] - bppP[0]);
364
365 // notification led aperture
366
367 nla_r0 = led_aperture/2;
368 nla_r1 = nla_r0 + led_window_ledge;
369 nla_r2 = nla_r1 + multicolour_gap;
370 nla_t =
371   led_window_style >= 3 ? initial_layer_thick :
372   led_window_style >= 2 ? led_window_ledge : 0;
373
374
375 // hinge plan
376 hp_rn = hingescrew_nut_access_dia/2;
377 hp_r2_min = hp_rn + lever_cover_th;
378 hp_rs = hingescrew_shaft_dia/2;
379 hp_r1_min = hp_rs + hingemount_th;
380
381 hp_r1 = max(hp_r1_min, hp_r2_min);
382 hp_r2 = hp_r1;
383
384 hppU = lpp13;
385 hppS = epp2o + [0,-1] * case_th_bottom;
386 hp_k = 0.5 * (hppU[1] - hppS[1] + foldover_gap);
387
388 hppM = [ epp4[0] - foldover_lever_gap - hp_r2,
389          0.5 * (hppU + hppS)[1] ];
390 hppT = [ hppM[0], hppU[1] - hp_r1 ];
391 hppB = hppT + [0,-1] * hp_k;
392
393 hppE_y = epp2o[1] - case_th_bottom + hp_r1;
394 hppE_x = hppB[0] + (hppB[1] - hppE_y) * hinge_base_slope;
395 hppE = [ hppE_x, hppE_y ];
396
397 // hinge elevation x coords
398
399 hex20 = max(epp2o[0],
400             phone_cnr_rad,
401             kppd[0] + hingescrew_head_th + keeper_gap_x_holes);
402 hex21 = hex20 + hingemount_wd;
403 hex22 = hex21 + hinge_x_gap;
404 hex27 = hex20 + hingescrew_shaft_len;
405 hex24 = hex27 + hinge_x_postscrew_gap;
406 hex23 = hex27 - (hingescrew_nut_thick*2
407                  + hingescrew_fasteners_extra_thick);
408 hex26 = hex23 + hingescrew_nut_thick * 2/3;
409
410 echo(hex20, hex21, hex22, hex23, hex24);
411 //  6, 10.8725, 10.9975, 13.74, 18.75
412 module chk(act,exp) {
413   if (abs(act-exp) > 1e-9) echo("WRONG", act, exp);
414   else echo("ok", act);
415 }
416 chk(hex20, 6);
417 chk(hex21, 10.8725);
418 chk(hex22, 10.9975);
419 chk(hex23, 13.74);
420 chk(hex24, 18.75);
421
422 lid_fold_clearance_skew =
423   (lpp10[1] - hppB[1]) /
424   (lpp10[0] - hppB[0]);
425
426 echo("SK",lid_fold_clearance_skew);
427
428 // catch
429
430 cppJ = [ epp4[0] + catch_thickness, lpp10[1] ];
431 cppA = cppJ + [lid_gap_x, -lid_gap_z];
432 cppB = [ epp0[0], cppA[1] ];
433 cppP = [ epp4[0], cppJ[1] ];
434
435 cppS = cppJ + [0,-1] * catch_len;
436 cppD = [ cppA[0], cppS[1] + catch_slop ];
437 cppC = [ cppB[0], cppD[1] ];
438 cppT = cppS + [1,0] * catch_depth;
439 cppU = cppT + [0,-1] * catch_height;
440 cppV = [ cppS[0], cppU[1] - catch_depth ];
441
442 cppR = 0.5*(cppP + cppJ);
443
444 cp_rQ = 0.5 * (cppJ[0] - cppP[0]);
445 cppQ = [ cppR[0],
446          cppV[1] - (catch_finger_height - cp_rQ) ];
447 cppF = [ cppV[0] + catch_finger_depth, cppC[1] ];
448
449 // lanyard
450
451 ly_r = lanyard_half_dia / 2;
452 ly_rc = ly_r * 2;
453
454 ly_theta = -atan2vector(epp2i - epp1);
455 ly_o = epp2i + 3 * ly_r * unitvector2d(epp1 - epp2i);
456
457 max_case_bottom_edge_thickness =
458   case_th_bottom
459   + sin(ly_theta) * (epp2i-epp2o)[0];
460
461 ly_q_z = -(ly_rc + ly_r);
462 ly_re = max_case_bottom_edge_thickness - (-ly_q_z);
463
464 // prop recess in case
465
466 prop_x_pos = phone_width/2;
467
468 prop_recess_hw = 0.5 * prop_main_width + prop_side_gap;
469
470 prc_r1 = prop_end_dia/2;
471 prc_r3 = prc_r1 + prop_recess_slop;
472
473 prcp2 = [ epp4[0] + prop_buildout_less,
474           case_bottom_z ];
475
476 prop_caserecess_buildout_r = -1; // prcp2[0] - epp2o[0];
477
478 prcp1 = [ epp2o[0] + prc_r3 + prop_caserecess_behind,
479           epp2i[1] - prc_r3 - prop_recess_under];
480
481 // prop recess in lid
482
483 prl_r10 = prop_end_dia/2;
484 prl_r10o = prl_r10 + prop_recess_slop;
485
486 prlp10 = lpp10 + [1,1] * prl_r10o
487   + [1,0] * prop_lidrecess_behind
488   + [0,1] * prop_recess_under;
489
490 // prop
491
492 $prpp10 = [0,0];
493 $prpp11 = [0, prop_taper_len];
494
495 $prp_r10 = prl_r10;
496
497 // ---------- modules ----------
498
499 module AdhocMultiprintFrame(phase, z0, zs) {
500   // from z0 to z0 + zs*layer
501   extra = phase * (initial_layer_width + multicolour_gap) + 5;
502   xextra = extra + -epp4[0];
503   xrange = [ 0, phone_width ] + [-1,+1] * xextra;
504   yextra = extra + -epp4[0];
505   yrange = [ -phone_height + +hppB[0] - hp_r2, 0 ] + [-1,+1] * yextra;
506   p0 = [ xrange[0], yrange[0] ];
507   p1 = [ xrange[1], yrange[1] ];
508   echo(p0, p1);
509   translate([0,0, z0])
510     mirror([0,0, zs<0 ? 1 : 0])
511     linear_extrude(height= initial_layer_thick)
512     difference(){
513       rectfromto(p0 - [1,1] * initial_layer_width,
514                  p1 + [1,1] * initial_layer_width);
515       rectfromto(p0, p1);
516     }
517 }
518
519 module KeeperProfile(slant=0){
520   use_e = kppe + [0,-1] * slant * keeper_inner_width / keeper_slant_slope;
521   polygon([use_e, kppd, kppc, kppb, kppa, kppf]);
522 }
523
524 module EdgeProfile(){
525   difference(){
526     hull(){
527       translate(epp3) square(case_th_bottom*2, center=true);
528       circleat(epp2o, r=case_th_bottom);
529       circleat(epp1, r=case_th_side);
530       rectfromto(epp0, epp4);
531     }
532     polygon([ epp5 + [0,10],
533               epp1,
534               epp2i,
535               epp3 + [10,0] ]);
536   }
537 }
538
539 module LanyardLanyardProfile(entry=false){
540   hull(){
541     for (xs=[-1,+1] * (entry ? lanyard_entry_rel_breadth : 1))
542       translate(xs * 0.5 * lanyard_half_dia * [1,0])
543         circle(r= lanyard_half_dia/2);
544   }
545 }
546
547 module LanyardCurveChannelProfile(){
548   translate([0, -ly_r])
549     LanyardLanyardProfile();
550 }  
551
552 module LanyardEntryChannelProfile(){
553   LanyardLanyardProfile(true);
554 }  
555
556 module LanyardMainChannelProfile(){
557   LanyardCurveChannelProfile();
558   difference(){
559     square(center=true, ly_r * [6, 2]);
560     for (xs=[-1,+1])
561       translate(ly_r * [3 * xs, -1])
562         circle(r = ly_r);
563   }
564 }
565
566 module LanyardEntryOuterProfile(){
567   circleat([ly_re + ly_r, 0], ly_re);
568 }
569
570 module LanyardEntry(){
571   q_z = ly_q_z;
572   d_x = -ly_rc;
573
574   oec_y = lanyard_entry_rel_breadth * ly_r;
575
576   translate([d_x, 0, q_z]) {
577     intersection(){
578       rotate([90,0,0])
579         rotate_extrude(convexity=10)
580         rotate(90)
581         translate([0, -q_z])
582         LanyardCurveChannelProfile();
583       translate([0,-10,0])
584         cube([20,20,20]);
585     }
586   }
587
588   mirror([0,0,1])
589     translate([0,0,-1])
590     linear_extrude(height=20)
591     rotate(-90)
592     LanyardEntryChannelProfile();
593
594   translate([0, ly_r*2, 0])
595     rotate([90,0,0])
596     linear_extrude(height = ly_r*4){
597     difference(){
598       rectfromto([d_x, q_z], [ly_r, 0]);
599       circleat([d_x, q_z], ly_rc);
600     }
601   }
602
603   translate([0,0,q_z]){
604     for (my=[0,1])
605       mirror([0,my,0]){
606         translate([0, oec_y, 0]){
607           difference(){
608             translate(ly_re * [-1,0,-2])
609               cube(ly_re * [2,1,2]);
610             rotate_extrude(convexity=10)
611               LanyardEntryOuterProfile();
612           }
613         }
614       }
615     difference(){
616       translate([-ly_re, -(oec_y + 0.01), -2*ly_re])
617         cube([ly_re*2, 2*(oec_y + 0.01), 2*ly_re]);
618       for (mx=[0,1])
619         mirror([mx,0,0])
620           rotate([90,0,0])
621           translate([0,0,-10])
622           linear_extrude(height=20)
623           LanyardEntryOuterProfile();
624     }
625   }
626 }
627
628 module LanyardCutout(l){
629   rotate([0,-90,0])
630     linear_extrude(height=l)
631     rotate(-90)
632     LanyardMainChannelProfile();
633
634   for (ee=[0,1]){
635     translate(ee * l * [-1,0])
636       mirror([ee,0,0])
637       LanyardEntry();
638   }
639 }
640
641 module LidEdgeProfile(){
642   polygon([ lpp10,
643             lpp11,
644             lpp12,
645             lpp13,
646             lpp13 + [10, 0],
647             lpp15 + [10, 0],
648             lpp15,
649             lpp14,
650             ]);
651   intersection(){
652     circleat(lpp12, r=lp_r12);
653     rectfromto( lpp12 + [-10,   0],
654                 lpp12 + [+10, +10] );
655   }
656 }
657
658 module LidEdgeFoldClearanceProfile(){
659   translate([-lid_fold_clearance_antislop, 0])
660     polygon([ lpp10,
661               lpp11,
662               lpp11 + [-20,  0],
663               lpp11 + [-20, 20],
664               lpp11 + [+20, 20],
665               lpp10 + [+20,  0] ]);
666 }
667
668 module ButtonCoverProfile(){
669   intersection(){
670     polygon(concat([ bppM, bppP, bppO, bppJ ],
671                    (enable_support && !$button_suppress_over_keeper
672                     ? [ bppU, bppV, bppW ] : []),
673                    [ bppL, bppK ]));
674     hull(){
675       EdgeProfile();
676       LidEdgeProfile();
677     }
678   }
679 }
680
681 module ButtonPlan(l, deep, cut){
682   epsilon =
683     (cut  ? 0 : lid_buttoncover_gap);
684
685   delta =
686     (deep ? lid_buttoncover_overlap : 0);
687
688   C = [0,0]; // by definition
689   T = [ 0, epp4[1] ];
690   G = T + [0,10];
691
692   B0 = C + [0,-1] * button_cutout_depth;
693   B1 = B0 + [0,1] * epsilon;
694
695   r0 = 0.5 * (T[1] - B0[1]);
696   A = [  -(l + button_l_fudge)/2 + r0, 0.5 * (T[1] + B0[1]) ];
697   H = A + [0,-1] * delta;
698
699   D = A + [-2,0] * r0;
700   F = D + [0,10];
701
702   E0 = 0.5 * (D + A);
703   E1 = E0 + [1,0] * epsilon;
704
705   I0 = [ E0[0], H[1] ];
706   I1 = [ E1[0], H[1] ];
707
708   hull(){
709     for (m=[0,1]) mirror([m,0])
710       circleat(H, r0 - epsilon);
711   }
712   for (m=[0,1]) mirror([m,0]) {
713     difference(){
714       polygon([ E1,
715                 I1,
716                 H,
717                 B1,
718                 G,
719                 F,
720                 D
721                 ]);
722       circleat(D, r0 + epsilon);
723     }
724   }
725 }
726
727 module CatchCatchProfile(){
728   hull(){
729     for (c=[ cppR, cppQ ])
730       circleat(c, cp_rQ);
731   }
732   hull(){
733     circleat(lpp12, lp_r12);
734     circleat(lpp12 + [5,0], lp_r12);
735     rectfromto(cppP, cppP + [5,0.1]);
736   }
737   polygon([cppJ, cppS, cppT, cppU, cppV, cppQ, cppR]);
738 }
739
740 module CatchCutProfile(){
741   polygon([ cppB,
742             cppA,
743             cppD,
744             cppF,
745             cppF + [0,-10],
746             cppF + [-10,-10],
747             lpp12 + [-10,0],
748             lpp12 + [10,0]
749             ]);
750 }
751
752 module Flip_rhs(yn=[0,1]) {
753   for ($rhsflip=yn) {
754     translate([phone_width/2, 0, 0])
755       mirror([$rhsflip,0,0])
756       translate([-phone_width/2, 0, 0])
757       children();
758   }
759 }
760
761 module Flip_bot(yn=[0,1]) {
762   for ($botflip=yn) {
763     translate([0, -phone_height/2, 0])
764       mirror([0, $botflip, 0])
765       translate([0, phone_height/2, 0])
766       children();
767   }
768 }  
769
770 module AroundEdges(fill_zstart, fill_th, fill_downwards=0){
771   // sides
772   Flip_rhs(){
773     translate([0, -phone_cnr_rad, 0])
774       rotate([90,0,0])
775       linear_extrude(height = phone_height - phone_cnr_rad*2)
776       children(0);
777   }
778   // corners
779   Flip_rhs() Flip_bot() {
780     translate([+1,-1] * phone_cnr_rad)
781       intersection(){
782         rotate_extrude()
783           intersection(){
784             mirror([1,0,0])
785               translate([-1,0] * phone_cnr_rad)
786               children(0);
787             rectfromto([0,-20],[10,20]);
788           }
789         translate([-10, 0, -20] + 0.01 * [+1,-1, 0] )
790           cube([10,10,40]);
791       }
792   }
793   // top and bottom
794   Flip_bot(){
795     translate([ phone_width - phone_cnr_rad, 0,0 ])
796       rotate([90,0,-90])
797       linear_extrude(height = phone_width - phone_cnr_rad*2)
798       children(0);
799   }
800   // fill
801   translate([0,0, fill_zstart])
802     mirror([0,0, fill_downwards])
803     linear_extrude(height = fill_th)
804     rectfromto([+1,-1] * phone_cnr_rad,
805                [phone_width, -phone_height] + [-1,+1] * phone_cnr_rad);
806 }
807
808 module CaseAperture(pos, dia, $fn) {
809   theta = 180/$fn;
810   translate([ pos[0] + bumper[0],
811               -epp2i[0],
812               -pos[1] ])
813     rotate([-90, theta, 0])
814     cylinder(r = dia/2 / cos(theta),
815              h = 60);
816 }
817
818 module SideButton(y, y_ref_sign, l, suppress_over_keeper=0){
819   // y_ref_sign:
820   //   +1  measured from top    of actual phone to top    of button
821   //   -1  measured from bottom of actual phone to bottom of button
822   //    0  y is centre of button in coordinate system
823   $button_l= l;
824   $button_suppress_over_keeper= suppress_over_keeper;
825   eff_y = y_ref_sign > 0 ?         -bumper [1] -y -l/2 :
826           y_ref_sign < 0 ? (-phone -bumper)[1] +y +l/2 :
827           y;
828   //echo(eff_y);
829   translate([0, eff_y, 0])
830     children();
831 }
832
833 module LidButtonishLeg(y, y_ref_sign, l=buttonishleg_default_l_is_fudge) {
834   $button_leg_only = true;
835   SideButton(y, y_ref_sign, l) children();
836 }
837
838 module Buttons(){
839   Flip_rhs(1) SideButton(15.580, +1, 8.9     ) children(); // power
840   Flip_rhs(1) SideButton(48.700, -1, 8.920   ) children(); // camera
841   Flip_rhs(0) SideButton(30.800, +1, 21.96, 1) children(); // volume
842   Flip_rhs(   ) LidButtonishLeg(14, -1) children();
843 //  Flip_rhs(0) LidButtonishLeg(20, +1, 20) children();
844 }
845
846 module Struts(x_start, z_min, th){
847   // if th is negative, starts at z_min and works towards -ve z
848   // and object should then be printed other way up
849   for (i= [1 : 1 : case_struts_count]) {
850     translate([0,
851                0,
852                z_min])
853       mirror([0,0, th<0 ? 1 : 0])
854       translate([0,
855                  -phone_height * i / (case_struts_count+1),
856                  case_struts_solid_below])
857       linear_extrude(height= abs(th)
858                      -(case_struts_solid_below+case_struts_solid_above))
859       rectfromto([               x_start, -0.5 * case_struts_width ],
860                  [ phone_width - x_start, +0.5 * case_struts_width ]);
861   }
862 }
863
864 module OrdinaryRearAperture(rhs,bot, pos){
865   Flip_rhs(rhs) Flip_bot(bot)
866     linextr(-20, 20)
867     mirror([0,1])
868     translate(pos + bumper)
869     children();
870 }
871
872 module MicroUSB(){
873   Flip_bot(1){
874     rotate([90,0,0])
875       mirror([0,0,1])
876       linextr(-epp2i[0], 60)
877       translate([0.5 * phone_width, 0, 0])
878       rectfromto([-microusb_width/2, epp2i[1] + microusb_below],
879                  [+microusb_width/2, epp0[1] + -microusb_above]);
880   }
881 }
882
883 module OrdinaryRearApertures(){
884   // rear speaker
885   OrdinaryRearAperture(1,1, rearspeaker_pos_bl)
886     rectfromto(-rearspeaker_gap,
887                rearspeaker_size + rearspeaker_gap);
888
889   // finger hole to remove phone
890   if (len(fingerpushhole_dias))
891     OrdinaryRearAperture(1,0, [ fingerpushhole_dias[0]/2 + epp2i[0],
892                                 phone[1]/2 ])
893     scale(fingerpushhole_dias)
894     circle(r= 0.5 );
895 }
896
897 module RearCameraAperture(){
898   Flip_rhs(1)
899     mirror([0, 0, 1])
900     linear_extrude(height = 20)
901     mirror([0, 1, 0])
902     translate(bumper)
903     rectfromto(camera_pos_tl, camera_pos_br);
904 }
905
906 module HingeLidProfile(){
907   hull(){
908     circleat(hppT, hp_r1);
909     circleat(lpp12, lp_r12);
910     polygon([lpp10,
911              lpp13 + [2,0],
912              lpp12,
913              hppT]);
914   }
915 }
916
917 module HingeBaseProfile(){
918   difference(){
919     hull(){
920       circleat(hppB, hp_r1);
921       circleat(hppE, hp_r1);
922       circleat(epp2o, case_th_bottom);
923       circleat(hppB + [10,0], hp_r1);
924     }
925     polygon([epp5, epp1, epp2i, epp3, bppL]);
926   }
927 }
928
929 module HingeLeverOuterProfile(){
930   hull(){
931     circleat(hppT, hp_r2);
932     circleat(hppB, hp_r2);
933   }
934 }
935
936 module HingeLeverInnerProfile(){
937   for (s = [-1,+1]) {
938     c = s > 0 ? hppT : hppB;
939     translate(c)
940       mirror([0,0,s>0])
941       rotate(s<0 ? -40 : 0)
942       hull()
943       for (x=[-20,20])
944         for (y=[0, s * 10])
945           translate([x,y])
946             circle(hp_rn);
947   }
948 }
949
950 module HingeLeverNutProfile(){
951   for (c= [hppB, hppT]) {
952     translate(c)
953       circle($fn=6, r= 0.5 * hingescrew_nut_across / cos(30));
954   }
955 }
956
957 module Flip_hinge(doflip=1){
958   hinge_origin = [0, -(phone_height - hppB[0]), hppB[1]];
959   translate(hinge_origin)
960     rotate([doflip*180,0,0])
961     translate(-hinge_origin)
962     children();
963 }
964
965 module HingePortion(x0,x1){
966   Flip_rhs() Flip_bot(1)
967     translate([x0,0,0])
968     mirror([1,0,0])
969     rotate([90,0,-90])
970     linear_extrude(height=x1-x0)
971     children();
972 }
973
974 module CatchPortion(xwidth, ztop){
975   width = catch_width + xwidth;
976   w = width + catch_topcurve_r*2 + 1;
977   translate([phone_width/2, 0,0]){
978     difference(){
979       rotate([90,0,-90])
980         linextr(-w/2, w/2)
981         children(0);
982       translate([0, 50, 0])
983         rotate([90,0,0])
984         linear_extrude(height=100){
985         for (m=[0,1]) mirror([m,0,0]) {
986           hull(){
987             translate([w/2, ztop - catch_topcurve_r])
988               circle(catch_topcurve_r);
989             translate([w/2, -50])
990               square(catch_topcurve_r*2, center=true);
991           }
992         }
993       }
994     }
995   }
996 }
997
998 module CaseBase(){
999   AroundEdges(epp3[1], case_th_bottom, 1)
1000     EdgeProfile();
1001 }
1002
1003 function prop_x(gamma) = hp_k / (2 * sin(gamma/2)) - hppT[0];
1004
1005 module PropProfileAssignments(gamma){
1006   // https://en.wikipedia.org/wiki/Solution_of_triangles#Two_sides_and_the_included_angle_given_(SAS)
1007   x = prop_x(gamma);
1008   p = phone_height + prlp10[0] - hppB[0];
1009   b = p + x;
1010
1011   q = phone_height - hppT[0] - prcp1[0]; // $prpp7[0] is 0 by definition
1012   a = q + x;
1013   c = sqrt(a*a + b*b - 2*a*b*cos(gamma));
1014   $prp_alpha = acos( (b*b + c*c - a*a) / (2*b*c) );
1015
1016   $prp_theta = 90 - $prp_alpha;
1017   beta = 180 - $prp_alpha - gamma;
1018   psi = 90 - beta;
1019
1020   //echo("abc", a,b,c);
1021
1022   v1 = [ [ cos(psi), -sin(psi) ],    // x
1023          [ sin(psi),  cos(psi) ] ];  // y
1024
1025   $prpp7 = [0, c + (lpp13[1] - $prpp10[1] - hp_k) ];
1026
1027   $prp_r1 = prc_r1;
1028   $prp_r11 = prop_main_th/2;
1029
1030   $prpp1 = $prpp7 + [1,0] *
1031     // this is approximate, but will do
1032     (prop_main_th/2 + prop_prop_gap + prcp1[0] - cppA[0]);
1033   $prpp3 = $prpp1 +
1034     v1[0] * -$prp_r1 +
1035     v1[1] * ((prcp2[1] - prcp1[1]) - prop_prop_gap);
1036   $prpp12 = $prpp3 + v1[0] *
1037     (prop_end_dia + prop_caserecess_taper * ($prpp1[1] - $prpp3[1]));
1038   $prp_r8 = prop_main_th;
1039   $prpp4 = [ prop_main_th/2, $prpp3[1] ];
1040   $prp_r5 = $prp_r8;
1041   $prpp5 = [ $prpp12[0] - $prp_r5,
1042             $prpp3[1] - prop_prong_h + $prp_r5 ];
1043   $prpp6 = $prpp4 + [0,-1] * (prop_prong_h +
1044          prop_prong_heel_slope * ($prpp5[0] - $prpp4[0]));
1045   $prpp8 = $prpp4 + [0,-1] * $prp_r8;
1046   $prpp9 = $prpp8 + [-1,0] * $prp_r8;
1047
1048   children();
1049 }
1050
1051 module PropProfile(gamma, cut=0, rot=0){ ////toplevel
1052   PropProfileAssignments(gamma){
1053
1054     //#circleat($prpp3,1);
1055     //#circleat($prpp12,1);
1056
1057     if (!cut) {
1058       hull(){
1059         translate($prpp8)
1060           intersection(){
1061             circle($prp_r8);
1062             polygon([[-20,-0], [20,20], [0,0]]);
1063           }
1064         rectfromto($prpp6, $prpp9);
1065         translate($prpp5) intersection(){
1066           circle($prp_r5);
1067           polygon([[-10,-10], [0,0], [10,0]]);
1068         }
1069         rectfromto($prpp12 + [0,-0.1], $prpp3);
1070       }
1071       hull(){
1072         circleat($prpp1, $prp_r1);
1073         rectfromto($prpp12 + [0,-0.1], $prpp3);
1074       }
1075     }
1076     // main shaft
1077     rotate([0,0, rot*-$prp_theta]){
1078       hull(){
1079         extra = cut ? prop_recess_slop : 0;
1080         rectfromto($prpp6, $prpp9);
1081         circleat($prpp11, $prp_r11 + extra);
1082         circleat($prpp10, $prp_r10 + extra);
1083       }
1084     }
1085   }
1086 }
1087
1088 module PropAggregateProfile(){
1089   for (angle = prop_angles)
1090     PropProfile(angle, 0,0);
1091 }
1092
1093 module Prop(){ ////toplevel
1094   hw = prop_main_width/2;
1095   linextr(-hw, +hw)
1096     PropAggregateProfile();
1097 }
1098
1099 module Case(){ ////toplevel
1100   difference(){
1101     union(){
1102       CaseBase();
1103
1104       // ledge (fixed keeper)
1105       Flip_rhs(1-keeper_side) intersection(){
1106         rotate([90, 0, 0])
1107           linear_extrude(height = phone_height + phone_cnr_rad * 2)
1108           KeeperProfile(1);
1109
1110         // outline of the whole case, to stop it protruding
1111         translate([0,0, -25])
1112           linear_extrude(height = 50)
1113           hull()
1114           Flip_bot()
1115           circleat([+1,-1] * phone_cnr_rad, phone_cnr_rad + case_th_side/2);
1116       }
1117
1118       // hinge
1119       HingePortion(hex20, hex21) HingeBaseProfile();
1120
1121       // buildout for prop recess
1122       if (prop_caserecess_buildout_r > 0) Flip_rhs(1)
1123         linextr(case_bottom_z, epp2i[1])
1124         hull() {
1125           for (dxs = [-1,+1])
1126             circleat([ prop_x_pos + dxs * prop_caserecess_buildout_r,
1127                        -epp2o[0] ],
1128                      r = epp2o[0] - prcp2[0]);
1129         }
1130     }
1131
1132     // slot for keeper
1133     Flip_rhs(keeper_side)
1134       translate([0, -phone_cnr_rad, 0])
1135       rotate([90, 0, 0])
1136       linear_extrude(height = phone_height + phone_cnr_rad * 2)
1137       minkowski(){
1138         KeeperProfile();
1139         rectfromto([ -keeper_gap_x,    -keeper_gap_z_bot ],
1140                    [ keeper_gap_x_holes,    +keeper_gap_z_top ]);
1141       }
1142
1143     // front camera
1144     RearCameraAperture();
1145
1146     // struts (invisible, because they're buried in the case)
1147     Struts(epp2i[0], epp2i[1] - case_th_bottom, case_th_bottom);
1148
1149     Buttons(){
1150       mirror([1,0,0])
1151         rotate([90,0,90]) {
1152           if (!($button_leg_only && enable_support))
1153           intersection(){
1154             translate([0,0,-10])
1155               linear_extrude(height= 20)
1156               ButtonPlan($button_l, 0,1);
1157             if ($button_leg_only)
1158               rotate([-90,90,0])
1159                 translate([phone_width/2, -400, kppe[1]])
1160                 mirror([1-abs($rhsflip - keeper_side),0,0])
1161                 cube([400, 800, 50]);
1162             if (enable_support && !$button_suppress_over_keeper)
1163               rotate([-90,90,0])
1164               translate([-400, -400, kppd[1]])
1165                 mirror([0,0,1])
1166                 cube([800,800,100]);
1167           }
1168           translate([0,0, -bppR[0]])
1169             linear_extrude(height= 20)
1170             ButtonPlan($button_l, 1,1);
1171         }
1172       
1173     }
1174
1175     // apertures along top edge
1176     CaseAperture(jack_pos, jack_dia, 8);
1177     Flip_rhs(1)
1178       CaseAperture(noisecancelmic_pos, noisecancelmic_dia, 8);
1179
1180     OrdinaryRearApertures();
1181
1182     MicroUSB();
1183
1184     // gaps for the lid's hinge arms
1185     HingePortion(hex20 - hinge_x_arms_gap,
1186                  hex21 + hinge_x_arms_gap)
1187       minkowski(){
1188         HingeLidProfile();
1189         circle(r= hinge_r_arms_gap, $fn= 8);
1190       }
1191
1192     // screw holes in the hinge arms
1193     HingeScrews();
1194
1195     // catch striker
1196     CatchPortion(catch_side_gap*2, epp4[1])
1197       CatchCutProfile();
1198
1199     // prop recess
1200     Flip_rhs(1)
1201       translate([prop_x_pos,0,0])
1202       mirror([0,1,0])
1203       rotate([90,0,90])
1204       linextr(-prop_recess_hw, +prop_recess_hw)
1205       hull(){
1206         for (d=[ [0,0], [0,-1], [+1,-1/prop_caserecess_taper] ])
1207           circleat(prcp1 + 20*d,
1208                    prc_r3);
1209       }
1210   }
1211 }
1212
1213 module LidAdhocMultiprintFrame(phase){
1214   if (led_window_style >= 3) {
1215     AdhocMultiprintFrame(phase, lpp13[1], -1);
1216   }
1217 }
1218
1219 module LidAroundEdges(){
1220   AroundEdges(lpp15[1], lpp13[1] - lpp15[1], 0)
1221     children();
1222 }
1223
1224 module Lid(){ ////toplevel
1225   skew_centre = [0, lpp11[0], lpp11[1]];
1226   difference(){
1227     union(){
1228       intersection(){
1229         LidAroundEdges()
1230           LidEdgeProfile();
1231
1232         translate(skew_centre)
1233           multmatrix([[ 1, 0, 0, 0 ],
1234                       [ 0, 1, -lid_fold_clearance_skew, 0 ],
1235                       [ 0, 0, 1, 0 ],
1236                       [ 0, 0, 0, 1 ]])
1237           translate(-skew_centre)
1238           LidAroundEdges()
1239           LidEdgeFoldClearanceProfile();
1240       }
1241
1242       // button covers
1243       Buttons(){
1244         intersection(){
1245           rotate([90,0,90])
1246             translate([0,0,-10])
1247             linear_extrude(height= 20)
1248             ButtonPlan($button_l, 1,0);
1249           rotate([90,0,0])
1250              translate([0,0,-100])
1251             linear_extrude(height= 200)
1252             ButtonCoverProfile();
1253         }
1254       }
1255
1256       // hinge arms
1257       HingePortion(hex20, hex21) {
1258         LidEdgeProfile();
1259         HingeLidProfile();
1260       }
1261
1262       // catch
1263       CatchPortion(0, lpp12[1])
1264         CatchCatchProfile();
1265     }
1266     Struts(lpp10[0] + strut_min_at_end, lpp13[1], -case_th_lid);
1267
1268     // screw holes in the hinge arms
1269     HingeScrews();
1270
1271     // prop recess
1272     translate([prop_x_pos, -prlp10[0], prlp10[1]])
1273       mirror([0,1,0])
1274       rotate([90,0,90])
1275       linextr(-prop_recess_hw, +prop_recess_hw)
1276       hull()
1277       for (pa = prop_angles)
1278         PropProfile(pa, 1,1);
1279
1280     // notification led aperture
1281     if (led_window_style)
1282       translate([led_pos[0], -led_pos[1], lpp13[1]]) {
1283         translate([0,0,-10])
1284           cylinder(r=nla_r0, h=20);
1285         if (led_window_style >= 2)
1286           translate([0,0, -nla_t])
1287             cylinder(r=nla_r2, height=20);
1288       }
1289
1290     }
1291
1292   LidAdhocMultiprintFrame(1);
1293 }
1294
1295 module HingeLever(){ ////toplevel
1296   difference() {
1297     // outer body, positive
1298     HingePortion(hex22, hex22 + phone_width/2)
1299       HingeLeverOuterProfile();
1300
1301     // space for the screws
1302     HingePortion(hex26, hex24)
1303       HingeLeverInnerProfile();
1304
1305     // recesses for the nuts
1306     HingePortion(hex23, hex26+1)
1307       HingeLeverNutProfile();
1308
1309     // bores for the screws
1310     HingeScrews();
1311
1312     // space for the charging cable
1313     MicroUSB();
1314     Flip_hinge() MicroUSB();
1315   }
1316 }
1317
1318 module LidWindow(){ ////toplevel
1319   translate([led_pos[0], -led_pos[1], lpp13[1]])
1320     mirror([0,0,1])
1321     cylinder(r= nla_r1, h=nla_t);
1322   LidAdhocMultiprintFrame(0);
1323 }
1324
1325 module LidWindowPrint(){ ////toplevel
1326   rotate([0,180,0])
1327     LidWindow();
1328 }
1329
1330 module DemoLidWindowSelect(){
1331   translate([led_pos[0], led_pos[1], -100]) {
1332     translate([0, -30, 0]) cube([400, 400, 200]);
1333   }
1334 }
1335
1336 module DemoLidWindow(){ ////toplevel
1337   %Lid();
1338   LidWindow();
1339   translate([0,40,0]){
1340     color("blue") intersection(){ Lid(); DemoLidWindowSelect(); }
1341     color("red") intersection(){ LidWindow(); DemoLidWindowSelect(); }
1342   }
1343 }
1344
1345 module HingeLeverPrint(){ ////toplevel
1346   rotate([-90,0,0])
1347     translate([-phone_width/2, phone_height, 0])
1348     HingeLever();
1349 }
1350
1351 module TestSelectLength(){
1352   translate([-30, -200, -20])
1353     cube([30 + 15, 250, 40]);
1354 }
1355
1356 module TestLength(){ ////toplevel
1357   intersection(){
1358     Case();
1359     TestSelectLength();
1360   }
1361 }
1362
1363 module TestLengthRight(){ ////toplevel
1364   intersection(){
1365     Case();
1366     Flip_rhs(1)
1367       TestSelectLength();
1368   }
1369 }
1370
1371 module TestSelectWidth(){
1372   translate([-30, -(phone_height - 25), -20])
1373     mirror([0, 1, 0])
1374     cube([200, 50, 40]);
1375 }
1376
1377 module TestWidth(){ ////toplevel
1378   intersection(){
1379     Case();
1380     TestSelectWidth();
1381   }
1382 }
1383
1384 module TestLidWidthPrint(){ ////toplevel
1385   rotate([0,180.0]) intersection(){
1386     Lid();
1387     TestSelectWidth();
1388   }
1389 }
1390
1391 module TestSelectRearAperture(){
1392   minkowski(){
1393     union() children();
1394     translate([20, 0,0])
1395       cube([42, 2, 1], center=true);
1396   }
1397 }
1398
1399 module TestSelectCamera(){
1400   minkowski(){
1401     TestSelectRearAperture()
1402       RearCameraAperture();
1403     cube([0.1, 50, 0.1]);
1404   }
1405 }
1406
1407 module TestSelectOrdinaryRearApertures(){
1408   TestSelectRearAperture()
1409     OrdinaryRearApertures();
1410 }
1411
1412 module TestCamera(){ ////toplevel
1413   intersection(){
1414     Case();
1415     TestSelectCamera();
1416   }
1417 }
1418
1419 module TestLidByCamera(){ ////toplevel
1420   intersection(){
1421     Lid();
1422     TestSelectCamera();
1423   }
1424 }
1425
1426 module TestLidByCameraPrint(){ ////toplevel
1427   rotate([180,0,0]) TestLidByCamera();
1428 }
1429
1430 module DemoByCamera(){ ////toplevel
1431   color("blue") TestLidByCamera();
1432   color("red")  TestCamera();
1433 }
1434
1435 module OneKeeper(){ ////toplevel
1436   translate([0, -phone_cnr_rad, 0])
1437     rotate([90, 0, 0])
1438     linear_extrude(height = phone_height - phone_cnr_rad * 2)
1439     KeeperProfile();
1440 }
1441
1442 module OneKeeperPrint(){ ////toplevel
1443   rotate([0,180,0])
1444     OneKeeper();
1445 }
1446
1447 module LidPrint(){ ////toplevel
1448   rotate([0,180,0])
1449     Lid();
1450 }
1451
1452 module TestSelectFrame(){
1453   include = [1,-1] * (epp2i[0] + 4);
1454
1455   difference(){
1456     cube(1000, center=true);
1457     translate([0,0, -100])
1458       linear_extrude(height=200)
1459       rectfromto(include,  inside_br - include);
1460   }
1461 }
1462
1463 module TestSelectLidFrame(){
1464   TestSelectFrame();
1465   translate([led_pos[0], -led_pos[1], -50])
1466     cylinder(r= nla_r2+3, h=100);
1467 }
1468
1469 module TestFrameCase(){ ////toplevel
1470   intersection(){
1471     Case();
1472     union(){
1473       TestSelectFrame();
1474       TestSelectCamera();
1475       TestSelectOrdinaryRearApertures();
1476     }
1477   }
1478 }
1479
1480 module TestSelectTopApertures(){
1481   translate([-100, -35, -100])
1482     cube([400, 100, 200]);
1483   LidAdhocMultiprintFrame(0);
1484   LidAdhocMultiprintFrame(1);
1485 }
1486
1487 module TestTopApertures(){ ////toplevel
1488   intersection(){
1489     Case();
1490     TestSelectFrame();
1491     TestSelectTopApertures();
1492   }
1493 }
1494
1495 module TestLidTopAperturesPrint(){ ////toplevel
1496   rotate([0,180,0]) intersection(){
1497     Lid();
1498     TestSelectLidFrame();
1499     TestSelectTopApertures();
1500   }
1501 }
1502
1503 module TestLidWindowTopAperturesPrint(){ ////toplevel
1504   rotate([0,180,0]) intersection(){
1505     LidWindow();
1506     TestSelectTopApertures();
1507   }
1508 }
1509
1510 module TestFrameLidPrint(){ ////toplevel
1511   rotate([0,180,0]) intersection(){
1512     Lid();
1513     TestSelectLidFrame();
1514   }
1515 }
1516
1517 module ButtonPlanForDemo(z, deep, cut){
1518   translate([0,0,z])
1519     ButtonPlan(8, deep, cut);
1520 }
1521
1522 module HingeScrews(){
1523   Flip_rhs() Flip_bot(1){
1524     for (c= [ hppT, hppB ])
1525       translate([ hex20,
1526                   -c[0],
1527                   c[1] ]){
1528         rotate([0,90,0])
1529           translate([0,0,-.2])
1530           cylinder( r= hingescrew_shaft_dia/2,
1531                     h = hingescrew_shaft_len+0.2 );
1532         rotate([0,-90,0])
1533           translate([0,0,+.1])
1534           cylinder( r= hingescrew_head_dia/2, h = hingescrew_head_th );
1535       }
1536   }
1537 }
1538
1539 module DemoPropAngleSelect(c){
1540   color(c) difference(){
1541     union(){ children(); }
1542     translate([ prop_x_pos, -400, -200 ])
1543       cube([ 400,800,400 ]);
1544   }
1545 }
1546
1547 module DemoPropAngle(ang){
1548   hL = [0, -(phone_height - hppT[0]), hppT[1] - hp_k*2];
1549   hC = [0, -(phone_height - hppB[0]), hppB[1]];
1550
1551   translate(hL)
1552     rotate([ang/2,0,0])
1553     translate(-hL)
1554     translate(hC)
1555     rotate([ang/2,0,0])
1556     translate(-hC) {
1557       DemoPropAngleSelect("red") Case();
1558
1559       color("orange")
1560         translate([prop_x_pos, -prcp1[0], prcp1[1]])
1561         PropProfileAssignments(ang) {
1562           echo($prpp1);
1563           rotate([-$prp_theta, 0, 0])
1564           translate([0, $prpp1[0], -$prpp1[1]])
1565           rotate([90,0,-90])
1566           Prop();
1567         }
1568     }
1569
1570   translate([0,0, -hp_k*2])
1571     DemoPropAngleSelect("blue")
1572     Lid();
1573 }
1574
1575 module DemoPropAngles(){ ////toplevel
1576   for (i=[0 : len(prop_angles)-1])
1577     translate(i * [0, -100, 100])
1578     DemoPropAngle(prop_angles[i]);
1579 }
1580
1581 module DemoHingeAngle(ang1,ang2){
1582   hL = [0, -(phone_height - hppT[0]), hppT[1]];
1583   hC = [0, -(phone_height - hppB[0]), hppB[1]];
1584
1585   translate(hL)
1586     rotate([ang2,0,0])
1587     translate(-hL)
1588     translate(hC)
1589     rotate([ang1,0,0])
1590     translate(-hC) {
1591       color("red") Lid();
1592     }
1593
1594   color("blue") intersection(){
1595     Case();
1596     union(){
1597       translate([bppJ[0], -400, -200])
1598         mirror([1,0,0])
1599         cube([400, 800, 400]);
1600       translate([10, -400, -200])
1601         cube([10, 800, 400]);
1602     }
1603   }
1604 }
1605
1606 module DemoHingeAngles(){ ////toplevel
1607   angles = [ 0, 4, 8, 12 ];
1608   echo("angles",angles);
1609   for (i=[0 : len(angles)-1]) {
1610     translate(i * [0, 0, 30]) {
1611       DemoHingeAngle(0,angles[i]);
1612       translate([0, 200, 0])
1613         DemoHingeAngle(angles[i],0);
1614     }
1615   }
1616 }
1617
1618 module DemoSelectAdhocLeftRight(right=0) {
1619   translate([phone_width/2, -400, -100]) // , -15, -100  to cross-section
1620     mirror([1-right, 0,0])
1621     cube([400, 800, 200]);
1622 }
1623
1624 module DemoLeft(){ ////toplevel
1625   color("red")  intersection(){ Case(); DemoSelectAdhocLeftRight(); }
1626   color("blue") intersection(){ Lid();  DemoSelectAdhocLeftRight(); }
1627 }
1628
1629 module DemoFrame(){ ////toplevel
1630   color("red") TestFrameCase();
1631   color("blue") intersection(){ Lid(); TestSelectLidFrame(); }
1632   color("black") HingeScrews();
1633   %HingeLever();
1634 }
1635
1636 module DemoLanyardCutout(){ ////toplevel
1637   LanyardCutout(25);
1638 }
1639
1640 module DemoHingedFrame(){ ///toplevel
1641   color("red") TestFrameCase();
1642   translate([0,0, -2*hp_k])
1643   color("blue") intersection(){ Lid(); TestSelectLidFrame(); }
1644
1645   Flip_hinge(){
1646     color("orange") HingeLever();
1647     color("black") HingeScrews();
1648   }
1649 }
1650
1651 module DemoHinge(){ ////toplevel
1652   translate([ -0.5*phone_width, phone_height, hp_k*3 ]) {
1653     DemoFrame();
1654     translate([0,0, -hp_k*3])
1655       DemoHingedFrame();
1656   }
1657 }
1658
1659 module DemoProfiles(){ ////toplevel
1660   LidEdgeProfile();
1661   %EdgeProfile();
1662   KeeperProfile();
1663   translate([0,0,-1]) color("black") KeeperProfile(1);
1664   color("purple") translate(epp2i)
1665     rotate(-ly_theta) {
1666     translate(lanyard_half_dia * 0.5 * [-3,-1])
1667       LanyardLanyardProfile();
1668     translate(lanyard_half_dia * 0.5 * [-3,+1])
1669       translate([0,-1] * case_th_side)
1670       LanyardLanyardProfile(true);
1671   }
1672   translate([0,0,-5]) color("white") translate(epp2i)
1673     rotate(-ly_theta)
1674     rectfromto([-15, 0],
1675                [+15, -max_case_bottom_edge_thickness]);
1676
1677   translate([0,20]) {
1678     LanyardMainChannelProfile();
1679     translate([0,0,1]) color("purple") LanyardCurveChannelProfile();
1680     translate([0,0,-1]) color("red") LanyardEntryChannelProfile();
1681   }
1682
1683   translate([20,0]) {
1684     LidEdgeProfile();
1685     %EdgeProfile();
1686
1687     demopoint_QR = [ bppS[0], bppQ[1] - 0.1];
1688   
1689     color("blue") ButtonCoverProfile();
1690     color("red") {
1691       rectfromto(bppQ, demopoint_QR);
1692       rectfromto(bppR, demopoint_QR);
1693     }
1694   }
1695
1696   translate([-20,0]) {
1697     color("black") ButtonPlanForDemo(-2, 0,1);
1698     color("red" )  ButtonPlanForDemo(-4, 1,1);
1699     color("blue")  ButtonPlanForDemo(-6, 1,0);
1700   }
1701
1702   translate([0, -30]) {
1703     %LidEdgeProfile();
1704     %EdgeProfile();
1705     color("blue") HingeLidProfile();
1706     color("red")  HingeBaseProfile();
1707     color("black") translate([0,0,-2]) HingeLeverOuterProfile();
1708   }
1709
1710   for (f=[0,1]) {
1711     translate([-30, -60 + 30*f]) {
1712       translate([0,0,-4]) EdgeProfile();
1713       %translate([0,0,-10]) HingeBaseProfile();
1714       translate([0,-2] * f * hp_k) {
1715         translate([0,0,-4]) LidEdgeProfile();
1716         %translate([0,0,-10]) %HingeLidProfile();
1717       }
1718       translate(+hppB) rotate([0,0,180*f]) translate(-hppB) {
1719         translate([0,0,-2]) color("black") HingeLeverOuterProfile(); 
1720         translate([0,0,0]) color("red") difference(){
1721           HingeLeverOuterProfile();
1722           HingeLeverInnerProfile();
1723         }
1724         translate([0,0,3]) color("yellow") HingeLeverNutProfile();
1725       }
1726     }
1727   }
1728
1729   translate([20,-30]) {
1730     %EdgeProfile();
1731     %LidEdgeProfile();
1732     //translate([0,0,1]) CatchCutProfile();
1733     color("blue") CatchCatchProfile();
1734     color("red") difference(){ EdgeProfile(); CatchCutProfile(); }
1735   }
1736
1737   translate([40,-30]) {
1738     difference(){
1739       LidEdgeProfile();
1740       translate(prlp10)
1741         PropProfile(10, 1, 0);
1742     }
1743     translate(prlp10)
1744       PropProfile(15, 0);
1745   }
1746   translate([60,-30]) {
1747     PropAggregateProfile();
1748   }
1749 }
1750
1751 //EdgeProfile();
1752 //KeeperProfile();
1753 //CaseBase();
1754 //%Case();
1755 //Keeper();
1756 //LidEdgeProfile();
1757 //KeeperProfile();
1758 //DemoProfiles();
1759 //PropRecess();