From: Ian Jackson Date: Sat, 27 Aug 2016 14:15:10 +0000 (+0100) Subject: flyscreen-handle: wip, Q0 etc X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=fbb550563e362b360334843b2f04f21c8e84cdd0;p=reprap-play.git flyscreen-handle: wip, Q0 etc --- diff --git a/flyscreen-handle.scad b/flyscreen-handle.scad index 84d94cf..6afe0bc 100644 --- a/flyscreen-handle.scad +++ b/flyscreen-handle.scad @@ -5,13 +5,25 @@ opening_depth = 7.88; openingcnr_dia = 1.34; opening_protrh = 1.8; +pivot_x = 6; + +pivoting_gap = 1; + +// calculated + +Q0 = [ openingcnr_dia/2, + openingcnr_dia/2 + opening_height/2 ]; + +P0 = [ pivot_x, pivoting_gap ]; +//P4 = [ + module ExtrusionSect(){ cr = openingcnr_dia/2; toph = opening_height/2 + opening_protrh; for (my=[0,1]) { mirror([0,my]) { - translate([cr/2, opening_height/2 + cr/2]) { + translate(Q0) { hull(){ circle(r=cr, $fn=20); translate([-cr,10]) square([cr*2, 1]); @@ -28,4 +40,8 @@ module ExtrusionSect(){ } } +module LeverSect(){ + +} + ExtrusionSect();