X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=fairphone-case.scad;h=1f336d759cd0f233cab27793a113f0fdf05c65ab;hb=0a11f8e82c4fdc7435c2e85ee4cdf282a4513a7c;hp=b781957575f5c684fd266d355dbcc854857e9e6c;hpb=8f760c16548a66f4921aeaf726acfbb9e17a3d4c;p=reprap-play.git diff --git a/fairphone-case.scad b/fairphone-case.scad index b781957..1f336d7 100644 --- a/fairphone-case.scad +++ b/fairphone-case.scad @@ -204,6 +204,7 @@ case_lip = 1.25; lid_gap_x = 0.25; lid_gap_z = 0.25; lid_lip = 1.75; +lid_edgepart_width = 5.0; catch_slop = 0.50; @@ -270,6 +271,8 @@ prop_caserecess_taper = 0.45; // one side only prop_prop_gap = 0.5; prop_prong_heel_slope = 0.5; +lid_fold_clearance_antislop = 0.5; + // ---------- calculated ---------- phone_width = (phone + bumper*2)[0]; @@ -316,7 +319,7 @@ kppa = [ kppb[0], kppf[1] ]; lpp10 = [ epp5[0] + lid_gap_x, kppc[1] + lid_gap_z ]; lpp11 = [ lpp10[0], epp5[1] + lid_gap_z ]; -lpp14 = lpp10 + [1,0] * keeper_inner_width; +lpp14 = lpp10 + [1,0] * max(keeper_inner_width, lid_edgepart_width); // exact x posn not very important; must extend past end of keeper lpp15 = [ lpp14[0], @@ -351,6 +354,8 @@ bppU = [ bppJ[0], lpp12[1] ]; bppV = lpp11; bppW = lpp10; +echo("BUTTON COVER TH", bppO[0] - bppP[0]); + // notification led aperture nla_r0 = led_aperture/2; @@ -408,6 +413,12 @@ chk(hex22, 10.9975); chk(hex23, 13.74); chk(hex24, 18.75); +lid_fold_clearance_skew = + (lpp10[1] - hppB[1]) / + (lpp10[0] - hppB[0]); + +echo("SK",lid_fold_clearance_skew); + // catch cppJ = [ epp4[0] + catch_thickness, lpp10[1] ]; @@ -522,12 +533,13 @@ module LidEdgeProfile(){ } module LidEdgeFoldClearanceProfile(){ - polygon([ lpp10, - lpp11, - lpp11 + [-20, 0], - lpp11 + [-20, 20], - lpp11 + [+20, 20], - lpp10 + [+20, 0] ]); + translate([-lid_fold_clearance_antislop, 0]) + polygon([ lpp10, + lpp11, + lpp11 + [-20, 0], + lpp11 + [-20, 20], + lpp11 + [+20, 20], + lpp10 + [+20, 0] ]); } module ButtonCoverProfile(){ @@ -833,7 +845,7 @@ module HingePortion(x0,x1){ mirror([1,0,0]) rotate([90,0,-90]) linear_extrude(height=x1-x0) - children(0); + children(); } module CatchPortion(width){ @@ -1065,7 +1077,7 @@ module LidAdhocMultiprintFrame(phase){ } module LidAroundEdges(){ - AroundEdges(lpp10[1], lpp13[1] - lpp10[1], 0) + AroundEdges(lpp15[1], lpp13[1] - lpp15[1], 0) children(); } @@ -1079,7 +1091,7 @@ module Lid(){ ////toplevel translate(skew_centre) multmatrix([[ 1, 0, 0, 0 ], - [ 0, 1, -2, 0 ], + [ 0, 1, -lid_fold_clearance_skew, 0 ], [ 0, 0, 1, 0 ], [ 0, 0, 0, 1 ]]) translate(-skew_centre) @@ -1102,7 +1114,10 @@ module Lid(){ ////toplevel } // hinge arms - HingePortion(hex20, hex21) HingeLidProfile(); + HingePortion(hex20, hex21) { + LidEdgeProfile(); + HingeLidProfile(); + } // catch CatchPortion(catch_width)