From 48f2b9ea3ed8e6128035f8890fa195404857478f Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 4 Jun 2017 12:34:24 +0100 Subject: [PATCH] sewing-table: FitTest_PairLink: wip (nfc) --- sewing-table.scad.m4 | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/sewing-table.scad.m4 b/sewing-table.scad.m4 index 7f59091..3e75bc2 100644 --- a/sewing-table.scad.m4 +++ b/sewing-table.scad.m4 @@ -843,24 +843,22 @@ module FitTest_PairLink(cut=false){ ////toplevel for (endy=[cy0,cy1]) { $fn=32; translate([cx,endy,0]){ - for (rot=[45:90:315]) { - rotate(rot){ - translate([legrad,0,0]){ - hull(){ - cylinder(r= footrad_max, h=1); - translate([0,0,-footrad_depth]) - cylinder(r= footrad_min, h=1); - } + // feet + for (rot=[45:90:315]) rotate(rot) { + translate([legrad,0,0]){ + hull(){ + cylinder(r= footrad_max, h=1); + translate([0,0,-footrad_depth]) + cylinder(r= footrad_min, h=1); } } } - for (rot=[45,135]) { - rotate(rot){ - hull(){ - for (s=[-1,+1]){ - translate([s*legrad,0,0]) - cylinder(r= footrad_max, h=bar[1]); - } + // legs + for (rot=[45,135]) rotate(rot) { + hull(){ + for (s=[-1,+1]){ + translate([s*legrad,0,0]) + cylinder(r= footrad_max, h=bar[1]); } } } -- 2.30.2