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