chiark / gitweb /
knifeblock: wip, recentered
[reprap-play.git] / knifeblock.scad
index 4376a880464c303e9d324d92498ccc63df5e5beb..6dc35dd425f3e4febdd0084b149f1e13e2c8b1fe 100644 (file)
@@ -2,18 +2,20 @@
 //import(file="t.dxf");
 
 module ImportTemplate(k,t) {
-  import(file=str("knifeblock-knives-t",k,t,".dxf"), convexity=10);
+  fn = str("knifeblock-knives-t",k,t,".dxf");
+  echo(fn);
+  import(file=fn, convexity=100);
 }
 
 module Knife(k){
   translate([0,50*k,0]){
-    ImportTemplate(k,"b");
+    ImportTemplate(k,"bl");
     translate([0,0,10])
-      ImportTemplate(k,"h");
+      ImportTemplate(k,"hl");
   }
 }
 
 Knife(0);
 Knife(1);
 Knife(2);
-//import(file="t.dxf",convexity=4);
+//import(file="knifeblock-knives-t0bl.dxf",convexity=100);