From: Ian Jackson Date: Mon, 28 Aug 2023 10:59:34 +0000 (+0100) Subject: poster-tube-lid: WallMountForBase wip X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=22dd01d301d8e5ee1aa7a31ad265834f57d05fe0;p=reprap-play.git poster-tube-lid: WallMountForBase wip Signed-off-by: Ian Jackson --- diff --git a/poster-tube-lid.scad b/poster-tube-lid.scad index b9b7f91..37b1920 100644 --- a/poster-tube-lid.scad +++ b/poster-tube-lid.scad @@ -655,12 +655,16 @@ module WallMount(){ ////toplevel } module WallMountBaseMounts(){ - linextr(0, 20) { - difference(){ - translate([ wmb_x_screw, wmb_y_screw_end ]) - rotate(45) - square(10, center=true); - circle(r = wmb_mount_cut_rad); + for (my=[0,1]) { + mirror([0, my, 0]) { + linextr(0, 20) { + difference(){ + translate([ wmb_x_screw, wmb_y_screw_end ]) + rotate(45) + square(10, center=true); + circle(r = wmb_mount_cut_rad); + } + } } } }