chiark / gitweb /
fairphone-case: wip lanyard, wip entry
[reprap-play.git] / fairphone-case.scad
index 737d7b8c7183f7d27e3a5c2a50f8b91512f11d8d..8f7e2152d2084f12ce987f44e76d183d9c1416ae 100644 (file)
@@ -446,6 +446,11 @@ cppQ = [ cppR[0],
         cppV[1] - (catch_finger_height - cp_rQ) ];
 cppF = [ cppV[0] + catch_finger_depth, cppC[1] ];
 
+// lanyard
+
+ly_r = lanyard_half_dia / 2;
+ly_rc = ly_r * 2;
+
 // prop recess in case
 
 prop_x_pos = phone_width/2;
@@ -521,14 +526,45 @@ module EdgeProfile(){
   }
 }
 
-module LanyardLanyardProfile(){
+module LanyardLanyardProfile(entry=false){
   hull(){
-    for (xs=[-1,+1])
+    for (xs=[-1,+1] * (entry ? 2 : 1))
       translate(xs * 0.5 * lanyard_half_dia * [1,0])
        circle(r= lanyard_half_dia/2);
   }
 }
 
+module LanyardCurveChannelProfile(){
+  translate([0, -ly_r])
+    LanyardLanyardProfile();
+}  
+
+module LanyardEntryChannelProfile(){
+  translate([0, -ly_r])
+    LanyardLanyardProfile(true);
+}  
+
+module LanyardMainChannelProfile(){
+  LanyardCurveChannelProfile();
+  difference(){
+    square(center=true, ly_r * [6, 2]);
+    for (xs=[-1,+1])
+      translate(ly_r * [3 * xs, -1])
+       circle(r = ly_r);
+  }
+}
+
+module LanyardEntry(){
+  rotate_extrude()
+    rotate(90)
+    translate([0, ly_rc + ly_r])
+    LanyardCurveChannelProfile();
+}
+
+module LanyardCutout(){
+  LanyardEntry();
+}
+
 module LidEdgeProfile(){
   polygon([ lpp10,
            lpp11,
@@ -1524,6 +1560,10 @@ module DemoFrame(){ ////toplevel
   %HingeLever();
 }
 
+module DemoLanyardEntry(){ ////toplevel
+  LanyardEntry();
+}
+
 module DemoHingedFrame(){ ///toplevel
   color("red") TestFrameCase();
   translate([0,0, -2*hp_k])
@@ -1548,10 +1588,20 @@ module DemoProfiles(){ ////toplevel
   %EdgeProfile();
   KeeperProfile();
   translate([0,0,-1]) color("black") KeeperProfile(1);
-  translate(epp2i)
-    rotate(atan2vector(epp2i - epp1))
+  color("purple") translate(epp2i)
+    rotate(atan2vector(epp2i - epp1)) {
     translate(lanyard_half_dia * 0.5 * [-3,-1])
-    color("purple") LanyardLanyardProfile();
+      LanyardLanyardProfile();
+    translate(lanyard_half_dia * 0.5 * [-3,+1])
+      translate([0,-1] * case_th_side)
+      LanyardLanyardProfile(true);
+  }
+
+  translate([0,20]) {
+    LanyardMainChannelProfile();
+    translate([0,0,1]) color("purple") LanyardCurveChannelProfile();
+    translate([0,0,-1]) color("red") LanyardEntryChannelProfile();
+  }
 
   translate([20,0]) {
     LidEdgeProfile();