From f198760bbd4989a8b69e982721d67e6d0563a385 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 28 Aug 2023 21:36:50 +0100 Subject: [PATCH] poster-tube-lid: WallMountBase wip (nfc) 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 d82b08d..d616220 100644 --- a/poster-tube-lid.scad +++ b/poster-tube-lid.scad @@ -743,18 +743,22 @@ module WallMountForBase(){ ////toplevel } } +module WallMountBasePillarsPlan(){ + for (my = [0,1]) { + mirror([0, my]) { + rectfromto([ -sm_outer_rad, wmbb_y_max - wmb_mount_y_width ], + [ wmbb_x_outer, wmbb_y_max ]); + } + } +} + module WallMountBase(){ ////toplevel difference(){ union(){ // vertical blocks rising to join to wall mount linextr(wmbb_z_min, wmb_z_max) { difference(){ - for (my = [0,1]) { - mirror([0, my]) { - rectfromto([ -sm_outer_rad, wmbb_y_max - wmb_mount_y_width ], - [ wmbb_x_outer, wmbb_y_max ]); - } - } + WallMountBasePillarsPlan(); WallMountBaseRingCut(); } } -- 2.30.2