chiark / gitweb /
fairphone-case: ButtonCoverReinf improvments
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 17 Sep 2018 09:51:36 +0000 (10:51 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 17 Sep 2018 09:51:36 +0000 (10:51 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
fairphone-case.scad

index 72b38a22f9338212d735bd805708cc87b38246c3..ab2354afd5da248f63ed390988d8aa0e8abe3672 100644 (file)
@@ -210,6 +210,7 @@ lid_gap_z = 0.25;
 lid_lip = 1.75;
 lid_edgepart_width = 5.0;
 lid_buttoncover_thick = 1.3;
+lid_buttoncover_reinf = 1.0;
 
 catch_slop = 0.50;
 
@@ -732,9 +733,13 @@ module ButtonCoverReinf(){ ////toplevel
   minkowski(){
     rotate([90,0,0])
       linear_extrude(height=0.01)
-      ButtonCoverProfile();
-    if(0) linear_extrude(height=0.01) intersection(){
-      circle(r=2);
+      intersection(){
+        ButtonCoverProfile();
+       translate([bppJ[0] + 0.1, -50]) mirror([1,0])
+         square([100,100]);
+    }
+    mirror([0,0,1]) linear_extrude(height=0.01) intersection(){
+      circle(r= lid_buttoncover_reinf);
       translate([-20,0]) square(40, center=true);
     }
   }