X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=fairphone-case.scad;h=238abba51865f76367ccbe737b284ce737b53890;hp=c7f3bcc5d535ce34c80e3cc6f7e2845f07b99a6e;hb=555e3de4e88b79d27ad06f6c0476a0726110d322;hpb=e97d57262de4867b7864d1abbce25d69cbd41c16 diff --git a/fairphone-case.scad b/fairphone-case.scad index c7f3bcc..238abba 100644 --- a/fairphone-case.scad +++ b/fairphone-case.scad @@ -18,6 +18,11 @@ 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 + case_th_bottom = 2.5; case_th_lid = 2.5; case_th_side = 2; @@ -58,6 +63,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 +266,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 @@ -369,6 +386,9 @@ module Case(){ ////toplevel ButtonPlan($button_l, 1,1); } } + + // apertures along top edge + CaseAperture(jack_pos, jack_dia, 8); } } @@ -418,7 +438,10 @@ module TestWidth(){ ////toplevel } module TestLidWidthPrint(){ ////toplevel - rotate([0,180.0]) TestLidWidth(); + rotate([0,180.0]) intersection(){ + Lid(); + TestSelectWidth(); + } } module TestSelectCamera(){ @@ -465,6 +488,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();