diff options
author | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2014-06-29 10:00:08 +0200 |
---|---|---|
committer | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2014-06-29 10:50:52 +0200 |
commit | df8907b0774526b07bd4c2f8a9dd04cd6ad65b80 (patch) | |
tree | 312627602abe82d048675bc41aa321f4ed8544df /lib/faces/digits.scad | |
parent | e43199f64993a61830710f0dbad7ad688754dbe7 (diff) |
New face set: Free Mono numbers
Diffstat (limited to 'lib/faces/digits.scad')
-rw-r--r-- | lib/faces/digits.scad | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/faces/digits.scad b/lib/faces/digits.scad new file mode 100644 index 0000000..b601452 --- /dev/null +++ b/lib/faces/digits.scad @@ -0,0 +1,7 @@ + +module digits(l, n, font) { + file = str("../lib/faces/img/",font,"/",n,".dxf"); + translate([0, 0, -1]) linear_extrude(height=2) scale(l/40) + translate([-20, -20, 0]) import(file); +} + |