From: Ian Jackson Date: Sun, 4 Jun 2017 17:07:49 +0000 (+0100) Subject: sewing-table: FitTest: break out teststrap (nfc) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5a39980a51b5e98ddcc78f798c800e0c46332b2e;p=reprap-play.git sewing-table: FitTest: break out teststrap (nfc) --- diff --git a/sewing-table.scad.m4 b/sewing-table.scad.m4 index dac94ef..81c8d4f 100644 --- a/sewing-table.scad.m4 +++ b/sewing-table.scad.m4 @@ -78,6 +78,7 @@ teststrapslots_at = [ [ 110, 70 ], [ 190, -80 ], ]; +teststrap = [ 3, 5 ]; teststrap_peg = [7.5, 3.5]; // calculated @@ -523,13 +524,12 @@ module Machine_Curves(){ ////toplevel module TestStrapSlots(){ pegwidth = teststrap_peg[0]; - strap = [ 3, 5 ]; for (pos = teststrapslots_at) { echo("TSS",pos); translate(concat(pos,[0])) for (mx = [0,1]) mirror([mx,0,0]) { - translate([ pegwidth/2, -strap[1]/2, -20 ]) - #cube(concat(strap,[40])); + translate([ pegwidth/2, -teststrap[1]/2, -20 ]) + #cube(concat(teststrap,[40])); } } }