From 403360142bd84b470b9752884ef8183c9e804b27 Mon Sep 17 00:00:00 2001 From: Glen Chung Date: Wed, 16 Oct 2013 23:43:18 +0800 Subject: [PATCH] 2.9 x 13 mm was a little too short, use 2.9 x 16 mm instead --- Hardware/Development/smooth_rod_fix/smooth_rod_fix.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Hardware/Development/smooth_rod_fix/smooth_rod_fix.scad b/Hardware/Development/smooth_rod_fix/smooth_rod_fix.scad index 890fe3c..91f7e3e 100644 --- a/Hardware/Development/smooth_rod_fix/smooth_rod_fix.scad +++ b/Hardware/Development/smooth_rod_fix/smooth_rod_fix.scad @@ -44,13 +44,13 @@ translate([0,0,part_z/2]) difference() { } // End of difference() command if(with_extra_parts) { - // --- Self tapping screw 2.9 x 13 mm --- + // --- Self tapping screw 2.9 x 16 mm --- color(Steel) { translate([0,0,-.2]) { translate([-smooth_rod_screw_sep,0,0]) - csk_bolt(2.9, 13); + csk_bolt(2.9, 16); translate([smooth_rod_screw_sep,0,0]) - csk_bolt(2.9, 13); + csk_bolt(2.9, 16); } } }