chiark / gitweb /
before THE HOLLOWING woooooo
[reprap-play.git] / biscuits.scad
diff --git a/biscuits.scad b/biscuits.scad
new file mode 100644 (file)
index 0000000..229e377
--- /dev/null
@@ -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();