From: Ian Jackson Date: Sat, 27 Aug 2016 15:13:19 +0000 (+0100) Subject: flyscreen-handle: New inadj approach, use same P7 always X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=c29bea0d1bb1aabaa02d07c319b2780cfef45a4a;hp=c2bcba321d2c33d933f8fd5451afe93e3a07f47f flyscreen-handle: New inadj approach, use same P7 always --- diff --git a/flyscreen-handle.scad b/flyscreen-handle.scad index d7b8f57..d9369b9 100644 --- a/flyscreen-handle.scad +++ b/flyscreen-handle.scad @@ -52,15 +52,13 @@ P8 = P9 + [ 0, outend_height - ourcirc_r*2 ]; P5 = Q0 + p4p5d; P6t = P5 + [ 0, outside_pushh - ourcirc_r*2 ]; -P7t = [ P6t[0] + (P6t[1] - P1[1]) / outside_pushslope, - P1[1] ]; +P7 = [ P6t[0] + (P6t[1] - P1[1]) / outside_pushslope, + P1[1] ]; outside_push_inadj_slope = (P3t[1]-P4[1]) / (P6a[1]-P5[1]); P3a = P3t + [ -outside_push_inadj, 0 ]; P6a = P6t + [ -outside_push_inadj, 0 ]; -P7a = [ P6a[0] + (P6a[1] - P1[1]) / outside_pushslope, - P1[1] ]; module ExtrusionSect(){ cr = openingedge_dia/2; @@ -120,7 +118,6 @@ module LeverSectTop(){ module LeverSectBot(inadj=false){ P6 = inadj ? P6a : P6t; - P7 = inadj ? P7a : P7t; mirror([0,1]) { LeverSect(inadj); PsHull([P5,P6,P7]);