From: Ian Jackson Date: Fri, 1 Mar 2019 20:16:44 +0000 (+0000) Subject: salter-scale-hook: CutProfile X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=3fe2d75f4a4161e9a62c4692909af942c7b2a487;p=reprap-play.git salter-scale-hook: CutProfile Signed-off-by: Ian Jackson --- diff --git a/salter-scale-hook.scad b/salter-scale-hook.scad index 025e54a..b9dc7b7 100644 --- a/salter-scale-hook.scad +++ b/salter-scale-hook.scad @@ -9,7 +9,7 @@ screw_head_dia = 8.2 + 1.0; rod_offset = 14 + 2; mainheight = 25; width = 40; -rearthick = 3; +rearthick = 4; // calculated @@ -42,8 +42,13 @@ module Profile() { } module CutProfile(){ - x = rod_dia/2 + rearthick; - rectfromto([x,yminc], [30,ymaxc]); + hull(){ + for (x = [rod_dia/2 + thick/2, 30]) { + for (y= [yminc,ymaxc] ) { + translate([x,y]) circle(r = (thick-rearthick)/2, $fn=20); + } + } + } } module ProfileDemo(){