From 36a96fbe266dcff4c2022dbe47acd47077b41c7f Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" <bss@incorporeal.org> Date: Sat, 9 Sep 2023 23:17:53 -0500 Subject: [PATCH] tighten up the inner hole a bit, to no noticeable detriment --- src/misc-dustwasher-lsx-nobi.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/misc-dustwasher-lsx-nobi.scad b/src/misc-dustwasher-lsx-nobi.scad index 5ae3095..2e8fee1 100644 --- a/src/misc-dustwasher-lsx-nobi.scad +++ b/src/misc-dustwasher-lsx-nobi.scad @@ -21,8 +21,8 @@ include <components.scad> module lsx_nobi_dustwasher() { difference() { cylinder(r=jumbo_decorative_radius+5+hole_tolerance, h=2, $fn=50, center=true); - // 5.5 = 5 (diameter of shaft is 10mm) + .5 to let it take an angle - cylinder(r=5.5+hole_tolerance, h=2.1, $fn=50, center=true); + // 5.25 = 5 (diameter of shaft is 10mm) + .25 to let it take an angle + cylinder(r=5.25+hole_tolerance, h=2.1, $fn=50, center=true); } }