chiark / gitweb /
6dc35dd425f3e4febdd0084b149f1e13e2c8b1fe
[reprap-play.git] / knifeblock.scad
1 // -*- C -*-
2 //import(file="t.dxf");
3
4 module ImportTemplate(k,t) {
5   fn = str("knifeblock-knives-t",k,t,".dxf");
6   echo(fn);
7   import(file=fn, convexity=100);
8 }
9
10 module Knife(k){
11   translate([0,50*k,0]){
12     ImportTemplate(k,"bl");
13     translate([0,0,10])
14       ImportTemplate(k,"hl");
15   }
16 }
17
18 Knife(0);
19 Knife(1);
20 Knife(2);
21 //import(file="knifeblock-knives-t0bl.dxf",convexity=100);