aboutsummaryrefslogtreecommitdiff
path: root/lib/faces/gfx.scad
blob: f9f1e2a5d53a8d9ff412cd0f58ae7f37311e959d (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);
}