From: Ian Jackson Date: Sat, 15 Feb 2014 19:53:40 +0000 (+0000) Subject: wardrobe-hook: tuning prototype X-Git-Tag: filamentspool-v2-release~438 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=9d593a7fbd219e88e1985c626a74c30419f932c0 wardrobe-hook: tuning prototype --- diff --git a/wardrobe-hook.scad b/wardrobe-hook.scad index 1f13834..c04496d 100644 --- a/wardrobe-hook.scad +++ b/wardrobe-hook.scad @@ -15,8 +15,8 @@ module FArcSegment(xc,yc,inrad,outrad,alpha,delta) { translate([xc,yc]) { intersection() { difference() { - circle(r=outrad); - circle(r=inrad); + circle(r=outrad, $fn=70); + circle(r=inrad, $fn=70); } rotate(alpha) scale(outrad*2) { FArcSegment_mask(delta); @@ -25,8 +25,9 @@ module FArcSegment(xc,yc,inrad,outrad,alpha,delta) { } } -tubeheight = 30; -tubewidth = 15; +tubeslop = 0.5; +tubeheight = 30 + tubeslop; +tubewidth = 15 + tubeslop; mainthick = 4; clipthick = 2;