From 22dd01d301d8e5ee1aa7a31ad265834f57d05fe0 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 28 Aug 2023 11:59:34 +0100 Subject: [PATCH] poster-tube-lid: WallMountForBase wip Signed-off-by: Ian Jackson --- poster-tube-lid.scad | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) 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); + } + } } } } -- 2.30.2