From: Ian Jackson Date: Wed, 2 Sep 2020 20:20:29 +0000 (+0100) Subject: nook-case: wip, different L and R sides in mains X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1f2eb879f8520c12530c679a5c8b2636e410c559;p=reprap-play.git nook-case: wip, different L and R sides in mains Signed-off-by: Ian Jackson --- diff --git a/nook-case.scad b/nook-case.scad index fe55097..6217e6e 100644 --- a/nook-case.scad +++ b/nook-case.scad @@ -124,12 +124,12 @@ module FaceCore(z0,z1){ translate(-nom_cnr) { rotate_extrude(angle=90, convexity=10) translate(-[1,0,0] * nook_cnr_rad) - children(0); + children(mx); } } translate([nook_w/2, 0,0]) linextr_y_xz(-nom_cnr[1]-0.1, nom_cnr[1]+0.1) - children(0); + children(1-mx); } for (my=[0,1]) mirror([0,my,0]) { translate([0, -nook_h/2, 0]) @@ -143,13 +143,17 @@ module FaceCore(z0,z1){ } module Base(){ ////toplevel - FaceCore(0,0) - SideMainProfile(); + FaceCore(0,0) { + LeftSideMainProfile(); + RightSideMainProfile(); + } } module Top(){ ////toplevel - FaceCore(0,0) - TopMainProfile(); + FaceCore(0,0) { + LeftTopMainProfile(); + RightTopMainProfile(); + } } module TestExtrude(){