From e9331be9b202aa194530385acd5801a5f6cd1f0e Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 2 Jan 2017 13:54:31 +0000 Subject: [PATCH] sewing-table: Fix CommitID in TileBase --- sewing-table.scad.m4 | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sewing-table.scad.m4 b/sewing-table.scad.m4 index d1d3d94..25bca6c 100644 --- a/sewing-table.scad.m4 +++ b/sewing-table.scad.m4 @@ -66,8 +66,7 @@ module Posts(posts) { module TileBase(botleft, topright){ size = topright - botleft; botleft_post = botleft + thehd_tr; - topright_post = topright - thehd_bl; - echo(botleft_post, topright_post); + topright_post = topright + thehd_bl; difference(){ mirror([0,0,1]) translate(concat(botleft, [0])) @@ -75,8 +74,8 @@ module TileBase(botleft, topright){ translate( concat(botleft_post, [-tile_th]) + 0.5 * [ post_dia, post_dia, 0 ] ) Commitid_BestCount_M( topright_post-botleft_post - + [0, thehd[1] ] - + [-post_dia,-post_dia] ); + + [-post_dia,-post_dia] + + [0, thehd[1]]); } } -- 2.30.2