From: Ian Jackson Date: Sat, 6 Feb 2016 18:54:05 +0000 (+0000) Subject: commitid-layering-test: split off Body (nfc) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=0e110365d14ed8e1c8214cdb8de142ab3b152cbd;p=reprap-play.git commitid-layering-test: split off Body (nfc) --- diff --git a/commitid-layering-test.scad b/commitid-layering-test.scad index dc9dfcc..1f82d7c 100644 --- a/commitid-layering-test.scad +++ b/commitid-layering-test.scad @@ -3,12 +3,18 @@ include baseh= 1; +basex = 31; +basey= 20; -mirror([0,0,1]) - translate([-12, -4]) - cube([31, 20, baseh]); +module Body(){ + mirror([0,0,1]) + translate([-12, -4]) + cube([basex, basey, baseh]); -Commitid_FontDemo(); + translate([-5, 6, 0]) + cylinder(r=4, h=3, $fn=20); +} + +Body(); -translate([-5, 6, 0]) - cylinder(r=4, h=3, $fn=20); +Commitid_FontDemo();