From 976eb41556b7138d47359a6aa2d46d1684c59046 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 9 Dec 2022 11:47:52 +0000 Subject: [PATCH] poster-tube-lid: Disable head cups These aren't so useful. Signed-off-by: Ian Jackson --- poster-tube-lid.scad | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/poster-tube-lid.scad b/poster-tube-lid.scad index 08127cd..372ef64 100644 --- a/poster-tube-lid.scad +++ b/poster-tube-lid.scad @@ -3,6 +3,7 @@ include coarse = false; +enable_head_cups = false; main_dia = 71.2 + 0.50 - 2.26; top_thick_middle = 4; @@ -423,12 +424,14 @@ module Cover(){ ////toplevel } } } - for (r=[0,180]) - rotate([0,0,r]) - translate([-implheadcup_large_dia * .5 - implheadcup_thick/2, - -implheadcup_large_dia * .0, - middle_bot_z + 0.1]) - ImplHeadCup(); + if (enable_head_cups) + for (r=[0,180]) + rotate([0,0,r]) + translate([-implheadcup_large_dia * .5 - implheadcup_thick/2, + -implheadcup_large_dia * .0, + middle_bot_z + 0.1]) + ImplHeadCup(); + // translate(strap_hoop_thick * [-0.5, 0, +1]) // translate([handling_dia/2, 0, -side_height]) // rotate([0,180,0]) rotate([0,0,90]) -- 2.30.2