chiark / gitweb /
sewing-table: Interlock: move iadj to global; adjust interlock_fine (nfc)
[reprap-play.git] / screw-recess-test.scad
index c9913722b093a23011fe5f35e421d7cd6f19ccc3..09eb0766763886f3a72d03842620de06e41c211b 100644 (file)
@@ -112,7 +112,7 @@ function Test_x(i) = i<=0 ? 0 :
   Test_x(i-1) + Test_blocksz(tests[i-1])/2 + Test_blocksz(tests[i])/2 - 3;
 
 module Tests(){
-  for (i = [0]) {
+  for (i = [0:len(tests)-1]) {
     echo(i, Test_x(i));
     translate([Test_x(i), 0, 0])
       OneTest(tests[i]);