From: Ian Jackson Date: Sat, 13 Jun 2020 12:14:27 +0000 (+0100) Subject: fairphone-battery-case: PushHolePlan wip X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=fca553aa9bffb7b468fc932ab83234f09d6ba03f fairphone-battery-case: PushHolePlan wip Signed-off-by: Ian Jackson --- diff --git a/fairphone-battery-case.scad b/fairphone-battery-case.scad index 1d70359..7b15375 100644 --- a/fairphone-battery-case.scad +++ b/fairphone-battery-case.scad @@ -22,6 +22,10 @@ handle_height = 3.5; handle_inward = 10; handle_len = 5; +pushhole_ell_sz = 3.5; +pushhole_ell_th = 1.5; +pushhole_circle_dia = 2.0; + // for testing: battery_len = 3; //battery_wdth = 15; @@ -125,6 +129,15 @@ module ExtrudePlan(from,to){ } } +module PushHolePlan(){ ////toplevel +// translate(-pushhole_ell_th * 0.5 * [1,1]) + for (r=[0,90]) + rotate(r) + translate(-pushhole_ell_th * 0.5 * [1,1]) + square([ pushhole_ell_sz, pushhole_ell_th ]); + circle(pushhole_circle_dia/2, $fn=20); +} + module PlanDemo(){ ////toplevel color("blue") BaseHalfPlan(); color("red") LidHalfPlan();