chiark / gitweb /
maglite-holder: more slop
[reprap-play.git] / screw-recess-test.scad
index 5762a26e8361cfe540997d6ab2f492c4710fa170..09eb0766763886f3a72d03842620de06e41c211b 100644 (file)
@@ -36,17 +36,17 @@ module RecessedScrewCutout(shaftdia, recessdia, shaftlen,
 
 //              nom.   shaft
 //              shaft   slop
-screw_info_M2   = [2,   1.5];
-screw_info_M3   = [3,   1.5];
-screw_info_M4   = [4,   1.2];
+screw_info_M2   = [2,   1.2];
+screw_info_M3   = [3,   1.2];
+screw_info_M4   = [4,   1.1];
 screw_info_M5   = [5,   1.0];
-screw_info_M6   = [6,   0.9];
+screw_info_M6   = [6,   1.2];
 
 function screw_shaft_dia_nom(info)      = info[0];
 function screw_shaft_dia_use(info)      = info[0] + info[1];
-function screw_recess_dia_use(info)     = info[0] * 2.5;
-function screw_recess_depth(info)       = info[0] *  .65;
-function screw_recess_depth_allen(info) = info[0] * 1.20;
+function screw_recess_dia_use(info)     = info[0] * 2.50 + 1.0;
+function screw_recess_depth(info)       = info[0] * 1.00 + 0.50;
+function screw_recess_depth_allen(info) = info[0] * 1.55 + 0.50;
 
 function RecessedScrewCutoutStandard_totaldepth(info) =
   RecessedScrewCutout_totaldepth(screw_recess_dia_use(info),
@@ -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);
   }
 }