chiark
/
gitweb
/
~ianmdlvl
/
reprap-play.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b82d83
)
fairphone-case: ButtonCoverReinf, actually add to lid
author
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Mon, 17 Sep 2018 09:51:56 +0000
(10:51 +0100)
committer
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Mon, 17 Sep 2018 09:51:56 +0000
(10:51 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
fairphone-case.scad
patch
|
blob
|
history
diff --git
a/fairphone-case.scad
b/fairphone-case.scad
index ab2354afd5da248f63ed390988d8aa0e8abe3672..3aaf61702b3b0547087ea2621bcff736d073a9ac 100644
(file)
--- a/
fairphone-case.scad
+++ b/
fairphone-case.scad
@@
-1274,10
+1274,17
@@
module Lid(){ ////toplevel
translate([0,0,-10])
linear_extrude(height= 20)
ButtonPlan($button_l, 1,0);
- rotate([90,0,0])
- translate([0,0,-100])
- linear_extrude(height= 200)
- ButtonCoverProfile();
+ union(){
+ rotate([90,0,0])
+ translate([0,0,-100])
+ linear_extrude(height= 200)
+ ButtonCoverProfile();
+ hull()
+ for (y= [-1,+1] * (($button_l + button_l_fudge)/2
+ - lid_buttoncover_reinf))
+ translate([0,y,0])
+ ButtonCoverReinf();
+ }
}
}