From 0e110365d14ed8e1c8214cdb8de142ab3b152cbd Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 6 Feb 2016 18:54:05 +0000 Subject: [PATCH 1/1] commitid-layering-test: split off Body (nfc) --- commitid-layering-test.scad | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) 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(); -- 2.30.2