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