From db0799f51454bdb1026b82d04e22e93da2a6b8e6 Mon Sep 17 00:00:00 2001 From: Glen Chung Date: Wed, 16 Oct 2013 23:58:27 +0800 Subject: [PATCH] add Y smooth rod fix --- Hardware/Development/main_frame/frame.scad | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Hardware/Development/main_frame/frame.scad b/Hardware/Development/main_frame/frame.scad index b75f2bf..6622019 100644 --- a/Hardware/Development/main_frame/frame.scad +++ b/Hardware/Development/main_frame/frame.scad @@ -231,13 +231,19 @@ difference() { csk_bolt(2.9, 16); } - // --- Smooth rod fix --- + // --- X smooth rod fix --- translate([X_smooth_rods_sep_projected,-smooth_rod_margin,0]) rotate([90,0,0]) translate([0,frame_thickness/2,8.5]) rotate([180,0,0]) smooth_rod_fix(with_extra_parts=true); translate([-smooth_rod_margin,X_smooth_rods_sep_projected,0]) rotate([0,90,0]) translate([-frame_thickness/2,0,-8.5]) rotate([0,0,90]) smooth_rod_fix(with_extra_parts=true); + // --- Y smooth rod fix --- + translate([frame_width-frame_thickness/2,frame_height,frame_thickness-2]) + translate([0,-Y_rod_height+smooth_rod_margin,0]) { + translate([0,-smooth_rod_margin-8.5,Y_rod_dist_from_wall]) rotate([90,90,180]) + smooth_rod_fix(with_extra_parts=true); + } }