From: Ian Jackson Date: Mon, 28 Aug 2023 20:36:50 +0000 (+0100) Subject: poster-tube-lid: WallMountBase wip (nfc) X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=f198760bbd4989a8b69e982721d67e6d0563a385;p=reprap-play.git poster-tube-lid: WallMountBase wip (nfc) Signed-off-by: Ian Jackson --- 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(); } }