From 464e035cc3cfa0aa784e414b6f078a8e026c0000 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 26 May 2017 17:31:31 +0100 Subject: [PATCH] sewing-table: FitTest bracing wip --- sewing-table.scad.m4 | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/sewing-table.scad.m4 b/sewing-table.scad.m4 index 3964850..c129315 100644 --- a/sewing-table.scad.m4 +++ b/sewing-table.scad.m4 @@ -531,9 +531,23 @@ m4_dnl that denoted by ix, and the next one anticlockwise m4_define(`R_EDGE',`$1[$2],$1[(($2)+1)%4]') module FitTest(){ ////toplevel + sz = [280,180]; + c0 = [-50,-80]; + c = Rectangle_corners(c0, sz); + brace = [7,7,9]; difference(){ - cube([200,200,200]); - #Machine(); + union(){ + Rectangle_TileBase(c); + translate(concat(c0, [-brace[2] + 0.1])){ + %difference(){ + cube(concat(sz,[brace[2]]) - [5,0,0]); + translate(brace + [0,0, -25]) + cube(concat(sz, [50]) - brace*2 + [10,0,0]); + } + } + RoundEdge(R_EDGE(c,1)); + } + Machine(); } } -- 2.30.2