chiark / gitweb /
sleepphone-cable-box: introduce wall_bot, nfc
[reprap-play.git] / screw-recess-test.scad
index 5db4a56036cd9e4c52a4a845943abdb8c9eaaf54..09eb0766763886f3a72d03842620de06e41c211b 100644 (file)
@@ -80,7 +80,7 @@ tests = [
 
 function Test_blocksz(t) = screw_recess_dia_use(t) + 7;
 
-module OneTestCore(t, h, ymul){
+module OneTestCore(t, h, ymul, labelnumber=false){
   blocksz = Test_blocksz(t);
   translate([0, ymul * (blocksz*0.5 - 1.5), 0]) {
     difference(){
@@ -88,6 +88,12 @@ module OneTestCore(t, h, ymul){
        cube([blocksz, blocksz, h]);
       child();
     }
+    if (labelnumber) {
+      rotate([90,0,0])
+       translate([-blocksz/4,blocksz/5, blocksz/2-1])
+       linear_extrude(height=0.3+1)
+      import(file=str("screw-recess-test-number-s",t[0],".dxf"), convexity=100);
+    }
   }
 }
 
@@ -97,7 +103,7 @@ module OneTest(t){
   OneTestCore(t, h, 1){
     RecessedScrewCutoutStandard(t, h+1);
   }
-  OneTestCore(t, ha, -1){
+  OneTestCore(t, ha, -1, true){
     RecessedScrewCutoutStandardAllen(t, ha+1);
   }
 }