chiark / gitweb /
commitid-layering-test: split off Body (nfc)
[reprap-play.git] / commitid-layering-test.scad
1 // -*- C -*-
2
3 include <commitid.scad>
4
5 baseh= 1;
6 basex = 31;
7 basey= 20;
8
9 module Body(){
10   mirror([0,0,1])
11     translate([-12, -4])
12     cube([basex, basey, baseh]);
13
14   translate([-5, 6, 0])
15     cylinder(r=4, h=3, $fn=20);
16 }
17
18 Body();
19
20 Commitid_FontDemo();