From: Ian Jackson Date: Tue, 31 Jul 2012 21:39:44 +0000 (+0100) Subject: before test print X-Git-Tag: firmware-tested-2012-08-04~10 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=2d428fbf7786dd6b90884860355883f6e256ad54;hp=b77b415524cb916f64aaa73bed2cb7e9fb2fc477;p=reprap-play.git before test print --- diff --git a/biscuits.scad b/biscuits.scad index 229e377..7532dcd 100644 --- a/biscuits.scad +++ b/biscuits.scad @@ -1,12 +1,27 @@ +$fn=200; + rad=30; -hbase=28; +hbase=28.4; voff=10; height=70; - module flatsolid() { circle(r=rad); polygon(points=[[-hbase,voff],[hbase,voff],[0,height]]); } -flatsolid(); +module mink() { + minkowski() { + flatsolid(); + circle(r=0.8); + } +} + +module hollow() { + difference() { + mink(); + flatsolid(); + } +} + +linear_extrude(height = 15) hollow();