From 1650565ed04516b6b809190c500d979ce1add0e4 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 31 Jul 2012 23:27:43 +0100 Subject: [PATCH] refactor parameters, no functional change, really --- biscuits.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } } -- 2.30.2