From fe85003b84b47a500cbf3c9dd85c0417e671a4ab Mon Sep 17 00:00:00 2001 From: Glen Chung Date: Wed, 16 Oct 2013 23:20:10 +0800 Subject: [PATCH] two of 2.9 x 13 mm self tapping scres for each smooth rod fix --- .../smooth_rod_fix/smooth_rod_fix.scad | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Hardware/Development/smooth_rod_fix/smooth_rod_fix.scad b/Hardware/Development/smooth_rod_fix/smooth_rod_fix.scad index 00ea8eb..890fe3c 100644 --- a/Hardware/Development/smooth_rod_fix/smooth_rod_fix.scad +++ b/Hardware/Development/smooth_rod_fix/smooth_rod_fix.scad @@ -2,10 +2,13 @@ // Created by Carlosgs (http://carlosgs.es) // License: Attribution - Share Alike - Creative Commons (http://creativecommons.org/licenses/by-sa/3.0/) +include +include use <../libs/obiscad/bcube.scad> use <../libs/obiscad/bevel.scad> use <../libs/build_plate.scad> +module smooth_rod_fix(with_extra_parts=false) { M8_rod_diam = 8.2; smooth_rod_margin = 1; @@ -40,4 +43,18 @@ translate([0,0,part_z/2]) difference() { } // End of difference() command + if(with_extra_parts) { + // --- Self tapping screw 2.9 x 13 mm --- + color(Steel) { + translate([0,0,-.2]) { + translate([-smooth_rod_screw_sep,0,0]) + csk_bolt(2.9, 13); + translate([smooth_rod_screw_sep,0,0]) + csk_bolt(2.9, 13); + } + } + } +} + +smooth_rod_fix();