X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=fairphone-case.scad;h=00d167eb785767a9e30fd6209749ecfa8818f94c;hp=7de97ca0c10705da77f4a963fc8f045a08c3268c;hb=c827170d69910df04bc8b620f2ed53ed5164e633;hpb=dfde1b9017d189f8555d7a3942cc3bb919453638 diff --git a/fairphone-case.scad b/fairphone-case.scad index 7de97ca..00d167e 100644 --- a/fairphone-case.scad +++ b/fairphone-case.scad @@ -18,6 +18,12 @@ phone_backside_slope_outer = 1.0; // larger means shallower camera_pos_tl = [ 6.450, 12.750 ]; // measured from tl corner camera_pos_br = [ 22.300, 37.600 ]; // tl/br as seen from back +jack_pos = [ 13.92, 7.96 ]; +jack_dia = 9.1 + .5; // some jack I had lying around + +noisecancelmic_pos = [ 19.54, 7.37 ]; // from rhs +noisecancelmic_dia = 1.75; + case_th_bottom = 2.5; case_th_lid = 2.5; case_th_side = 2; @@ -58,6 +64,8 @@ strut_min_at_end = 1.5; phone_width = (phone + bumper*2)[0]; phone_height = (phone + bumper*2)[1]; +inside_br = [phone_width, -phone_height]; + //echo(camera_pos_tl + bumper, // camera_pos_br + bumper); @@ -259,6 +267,16 @@ module AroundEdges(fill_zstart, fill_th, fill_downwards=0){ [phone_width, -phone_height] + [-1,+1] * phone_cnr_rad); } +module CaseAperture(pos, dia, $fn) { + theta = 180/$fn; + translate([ pos[0] + bumper[0], + -epp2i[0], + -pos[1] ]) + rotate([-90, theta, 0]) + cylinder(r = dia/2 / cos(theta), + h = 60); +} + module SideButton(y, y_ref_sign, l){ // y_ref_sign: // +1 measured from top of actual phone to top of button @@ -283,6 +301,7 @@ module Buttons(){ CaseBase_rhsflip([1]) SideButton(48.700, -1, 8.920) children(); // camera CaseBase_rhsflip([0]) SideButton(30.800, +1, 21.96) children(); // volume CaseBase_rhsflip( ) LidButtonishLeg(20, -1) children(); +// CaseBase_rhsflip([0]) LidButtonishLeg(20, +1, 20) children(); } module Struts(x_start, z_min, th){ @@ -368,6 +387,11 @@ module Case(){ ////toplevel ButtonPlan($button_l, 1,1); } } + + // apertures along top edge + CaseAperture(jack_pos, jack_dia, 8); + CaseBase_rhsflip([1]) + CaseAperture(noisecancelmic_pos, noisecancelmic_dia, 20); } } @@ -417,7 +441,10 @@ module TestWidth(){ ////toplevel } module TestLidWidthPrint(){ ////toplevel - rotate([0,180.0]) TestLidWidth(); + rotate([0,180.0]) intersection(){ + Lid(); + TestSelectWidth(); + } } module TestSelectCamera(){ @@ -464,6 +491,39 @@ module OneKeeperPrint(){ ////toplevel OneKeeper(); } +module LidPrint(){ ////toplevel + rotate([0,180,0]) + Lid(); +} + +module TestSelectFrame(){ + include = [1,-1] * (epp2i[0] + 4); + + difference(){ + cube(1000, center=true); + translate([0,0, -100]) + linear_extrude(height=200) + rectfromto(include, inside_br - include); + } +} + +module TestFrameCase(){ ////toplevel + intersection(){ + Case(); + union(){ + TestSelectFrame(); + TestSelectCamera(); + } + } +} + +module TestFrameLidPrint(){ ////toplevel + rotate([0,0,180]) intersection(){ + Lid(); + TestSelectFrame(); + } +} + module Keeper(){ ////toplevel CaseBase_rhsflip() OneKeeper();