X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=screw-recess-test.scad;h=09eb0766763886f3a72d03842620de06e41c211b;hp=5db4a56036cd9e4c52a4a845943abdb8c9eaaf54;hb=851ba08b086f3ab4912212409f62f7cc6a191b81;hpb=0f78e8e9ef4afcb7864b8a3274b99127c45ff06b diff --git a/screw-recess-test.scad b/screw-recess-test.scad index 5db4a56..09eb076 100644 --- a/screw-recess-test.scad +++ b/screw-recess-test.scad @@ -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); } }