From 55873c83d27e982b40ecdc268c6aaabb2c50bcf4 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 12 Feb 2015 00:11:19 +0000 Subject: [PATCH] screw-recess-test: Make tests line up with ymul --- screw-recess-test.scad | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/screw-recess-test.scad b/screw-recess-test.scad index a5dab4f..5bad139 100644 --- a/screw-recess-test.scad +++ b/screw-recess-test.scad @@ -80,20 +80,26 @@ tests = [ function Test_blocksz(t) = screw_recess_dia_use(t) + 7; -module OneTestCore(t, h){ +module OneTestCore(t, h, ymul){ blocksz = Test_blocksz(t); - difference(){ - translate([-blocksz/2, -blocksz/2, 0]) - cube([blocksz, blocksz, h]); - child(); + translate([0, blocksz*ymul*0.5 - 1.5, 0]) { + difference(){ + translate([-blocksz/2, -blocksz/2, 0]) + cube([blocksz, blocksz, h]); + child(); + } } } module OneTest(t){ h = RecessedScrewCutoutStandard_totaldepth(t); - OneTestCore(t, h){ + ha = RecessedScrewCutoutStandardAllen_totaldepth(t); + OneTestCore(t, h, 1){ RecessedScrewCutoutStandard(t, h+1); } +// OneTestCore(t, ha){ +// RecessedScrewCutoutStandardAllen(t, ha+1); +// } } function Test_x(i) = i<=0 ? 0 : -- 2.30.2