From: Ian Jackson Date: Mon, 31 Aug 2015 22:08:56 +0000 (+0100) Subject: pull-cord-keeper: hull the RoundEdges X-Git-Tag: filamentspool-v2-release~160 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=91d3220113cc2f325e9c8eada870badd04680a3c pull-cord-keeper: hull the RoundEdges --- diff --git a/pull-cord-keeper.scad b/pull-cord-keeper.scad index b23ac47..ca05b9d 100644 --- a/pull-cord-keeper.scad +++ b/pull-cord-keeper.scad @@ -64,12 +64,14 @@ module RoundEdges(){ OuterOval(); for (xi=[-1,1]) { - for (yi=[-1,1]) { - translate([xi * (hcentredist/2 + hinnerrad), - houterrad, - yi * (height/2 - roundedgedia / 4 * sqrt(2))]) - rotate([90,0,0]) - cylinder(r=roundedgedia/2, h=houterrad*2, $fn=20); + hull(){ + for (yi=[-1,1]) { + translate([xi * (hcentredist/2 + hinnerrad), + houterrad, + yi * (height/2 - roundedgedia / 4 * sqrt(2))]) + rotate([90,0,0]) + cylinder(r=roundedgedia/2, h=houterrad*2, $fn=20); + } } } }