From cd5bf087fd64bdb7f746e4c7f7fe199f20aefb4a Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 9 Oct 2017 02:18:23 +0100 Subject: [PATCH] poster-tube-lid: fix showing brace ends --- poster-tube-lid.scad | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/poster-tube-lid.scad b/poster-tube-lid.scad index 4ab3636..c5b1e8f 100644 --- a/poster-tube-lid.scad +++ b/poster-tube-lid.scad @@ -34,6 +34,7 @@ bayo_slice_size = 1; brace_hole_width = 1.0; brace_above_below = 1.2; +brace_end_shorter = 0.3; jig_thick = 1.4; jig_hole_dia = 3.0; @@ -205,7 +206,8 @@ module Cover(){ ////toplevel rotate([0,0, r]) { height = top_thick - brace_above_below*2; translate([0,0, seal_thick + brace_above_below + height/2 ]) - cube(center=true, [ main_dia, brace_hole_width, height ]); + cube(center=true, [ oring_bore - brace_end_shorter, + brace_hole_width, height ]); } } } -- 2.30.2