From: Ian Jackson Date: Sun, 8 Oct 2017 16:11:09 +0000 (+0100) Subject: filamentspool: CupSecuringClip: fix smaller/bigger confusion (nfc) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=e2787e91315e8bab443067eb99cd6c203cc05be7 filamentspool: CupSecuringClip: fix smaller/bigger confusion (nfc) --- diff --git a/filamentspool.scad b/filamentspool.scad index a719c92..b2991ea 100644 --- a/filamentspool.scad +++ b/filamentspool.scad @@ -212,8 +212,8 @@ overclipcupnextgap=selsz(20,15,20); hubaxlelen = selsz(25, 62.5, 77.5); echo(hubaxlelen); -overclipsmaller=-2.5; -overclipbigger=-0.5; +overclipsmaller=0.5; +overclipbigger=2.5; wingspoke=2.5; wingsize=6; @@ -461,8 +461,8 @@ module CupSecuringClipSolidSmooth(xrad=0, xdepth=0){ minkowski(){ CupSecuringClipSolid(w=totalwidth, d=overclipdepth + xdepth, - h1=hbase - overclipsmaller, - h2=hbase + overclipbigger); + h1=hbase + overclipbigger, + h2=hbase - overclipsmaller); cylinder($fn=20, h=0.01, r=overcliproundr+xrad); } }