From: Ian Jackson Date: Sun, 21 Jan 2018 01:25:25 +0000 (+0000) Subject: fairphone-case: move some coord trickery (nfc) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=4598a587b2f7c135b32d6c9b672c4aea9e78e2be fairphone-case: move some coord trickery (nfc) Signed-off-by: Ian Jackson --- diff --git a/fairphone-case.scad b/fairphone-case.scad index 26b6c06..5b80272 100644 --- a/fairphone-case.scad +++ b/fairphone-case.scad @@ -252,8 +252,6 @@ module AroundEdges(fill_zstart, fill_th, fill_downwards=0){ module SideButton(y,l){ $button_l= l; translate([0, -y, 0]) - mirror([1,0,0]) - rotate([90,0,90]) children(); } @@ -327,12 +325,15 @@ module Case(){ ////toplevel Struts(epp2i[0], epp2i[1] - case_th_bottom, case_th_bottom); Buttons(){ - translate([0,0,-10]) - linear_extrude(height= 20) - ButtonPlan($button_l, 0,1); - translate([0,0, -bppR[0]]) - linear_extrude(height= 20) - ButtonPlan($button_l, 1,1); + mirror([1,0,0]) + rotate([90,0,90]) { + translate([0,0,-10]) + linear_extrude(height= 20) + ButtonPlan($button_l, 0,1); + translate([0,0, -bppR[0]]) + linear_extrude(height= 20) + ButtonPlan($button_l, 1,1); + } } } }