aboutsummaryrefslogtreecommitdiff
path: root/lib/faces/digits.scad
blob: 80d724f3a61a9cb6aadddeb8c3febbb6eac22145 (plain)
1
2
3
4
5
6
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);
}