From b6a25ae821e2467ae866f3a5438566a73fe6ed54 Mon Sep 17 00:00:00 2001 From: Luke Hubmayer-Werner Date: Sat, 1 Feb 2025 20:00:18 +1030 Subject: [PATCH] Loosen truss rod tolerance slightly --- CFTubes/common.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CFTubes/common.scad b/CFTubes/common.scad index faf5d2a..6c62e5a 100644 --- a/CFTubes/common.scad +++ b/CFTubes/common.scad @@ -164,13 +164,13 @@ module TrussRod(length = 630, tolerance = 0, taper_l = 1.5, taper_extra = 1.0, t base_h = 9.0 + tolerance; // nut? - stage2_d = 7.0 + tolerance; + stage2_d = 7.05 + tolerance; stage2_w = base_w; stage2_h = base_h + (stage2_d - base_d); stage2_l = 55 + tolerance; // Turning end - stage3_d = 9.1 + tolerance; + stage3_d = 9.2 + tolerance; stage3_w = stage3_d; stage3_h = base_h + (stage3_d - base_d); stage3_l = 35 + tolerance;