From: Ian Jackson Date: Tue, 31 Jul 2012 22:27:43 +0000 (+0100) Subject: refactor parameters, no functional change, really X-Git-Tag: firmware-tested-2012-08-04~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=1650565ed04516b6b809190c500d979ce1add0e4 refactor parameters, no functional change, really --- diff --git a/biscuits.scad b/biscuits.scad index c230477..b9d781e 100644 --- a/biscuits.scad +++ b/biscuits.scad @@ -5,8 +5,8 @@ hbase=28.4*scale; voff=10*scale; height=70*scale; -wallheight = 15 -thick=0.8; +wallheight = 15; +wallthick=0.8; module flatsolid() { circle(r=rad,$fn=50); @@ -16,7 +16,7 @@ module flatsolid() { module mink() { minkowski() { flatsolid(); - circle(r=thick/2); + circle(r=wallthick/2); } }