chiark / gitweb /
knifeblock: wip, template reorg
[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=3);
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);