chiark / gitweb /
fairphone-case: fix TestLidWidthPrint (must have been broken by some refactor)
[reprap-play.git] / fairphone-case.scad
index c7f3bcc5d535ce34c80e3cc6f7e2845f07b99a6e..93e804a3613c09723256f09bbaab5db9bd29b950 100644 (file)
@@ -18,6 +18,9 @@ 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
+
 case_th_bottom = 2.5;
 case_th_lid = 2.5;
 case_th_side = 2;
@@ -58,6 +61,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);
 
@@ -369,6 +374,15 @@ module Case(){ ////toplevel
            ButtonPlan($button_l, 1,1);
         }
     }
+
+    // jack
+    translate([ jack_pos[0] + bumper[0],
+               -epp2i[0],
+               -jack_pos[1] ])
+      rotate([-90, 22.5, 0])
+      cylinder(r = jack_dia/2 / cos(22.5),
+              h = 60,
+              $fn=8);
   }
 }
 
@@ -418,7 +432,10 @@ module TestWidth(){ ////toplevel
 }
 
 module TestLidWidthPrint(){ ////toplevel
-  rotate([0,180.0]) TestLidWidth();
+  rotate([0,180.0]) intersection(){
+    Lid();
+    TestSelectWidth();
+  }
 }
 
 module TestSelectCamera(){
@@ -465,6 +482,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();