aboutsummaryrefslogtreecommitdiff
path: root/lib/faces/gfx.scad
blob: bd29cf857a2cd64eb12c63d5bdd5f880484f763f (plain)
1
2
3
4
5
6
7
module gfx(l, gfx) {
    file = str("../../lib/faces/img/gfx/",gfx,".dxf");
    translate([0, 0, -1]) linear_extrude(height=2) scale(l/40) 
        translate([-20, -20, 0]) import(file);
}