From: Ian Jackson Date: Tue, 31 Jul 2012 21:29:35 +0000 (+0100) Subject: before THE HOLLOWING woooooo X-Git-Tag: firmware-tested-2012-08-04~11 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=b77b415524cb916f64aaa73bed2cb7e9fb2fc477 before THE HOLLOWING woooooo --- diff --git a/biscuits.scad b/biscuits.scad new file mode 100644 index 0000000..229e377 --- /dev/null +++ b/biscuits.scad @@ -0,0 +1,12 @@ +rad=30; +hbase=28; +voff=10; +height=70; + + +module flatsolid() { + circle(r=rad); + polygon(points=[[-hbase,voff],[hbase,voff],[0,height]]); +} + +flatsolid();