chiark / gitweb /
285cc4b98bbdfaa29d95861cf6cab6bb3e787f35
[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 basexpos = -12;
9 baseypos = -4;
10
11 module Body(){
12   mirror([0,0,1])
13     translate([basexpos, baseypos])
14     cube([basex, basey, baseh]);
15
16   translate([-5, 6, 0])
17     cylinder(r=4, h=3, $fn=20);
18 }
19
20 Body();
21
22 Commitid_FontDemo();