From: Ian Jackson Date: Mon, 28 Aug 2023 21:33:39 +0000 (+0100) Subject: poster-tube-lid: simple fix for longer screws X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=924b1bb706338dc9de442ab7b103e5964ca21b15 poster-tube-lid: simple fix for longer screws Signed-off-by: Ian Jackson --- diff --git a/poster-tube-lid.scad b/poster-tube-lid.scad index 8356d46..97ddef2 100644 --- a/poster-tube-lid.scad +++ b/poster-tube-lid.scad @@ -223,7 +223,10 @@ wmb_z_screw = max( wmb_nut_around_min + wmb_nut_rad ); wmb_z_max = wmb_z_screw * 2; -wmbb_y_max = wmb_y_mount_max + wmb_mount_gap_xy + wmb_mount_wall; +wmbb_y_max = max( + wmb_y_mount_max + wmb_mount_gap_xy + wmb_mount_wall, + wmb_y_screw_end + web_screw_len + ); wmbb_x_outer = wmb_x_outer + (wmb_mount_gap_xy + wmb_mount_wall); wmbb_z_flat_max = -wmb_bottom_gap; wmbb_z_flat_whole_min = wmbb_z_flat_max - wmb_bottom_th_min;