From 8f379ed344418b579b7caa0cd4fea1c730a75fdc Mon Sep 17 00:00:00 2001 From: Arne Durr Date: Mon, 1 Dec 2014 11:44:27 +0100 Subject: [PATCH] Fix for wrong left/right frame render fix for issue https://github.com/carlosgs/Cyclone-PCB-Factory/issues/27 --- Hardware/CYCLONE_2/Source_files/Cyclone.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Hardware/CYCLONE_2/Source_files/Cyclone.scad b/Hardware/CYCLONE_2/Source_files/Cyclone.scad index e01bdd6..2812ecb 100644 --- a/Hardware/CYCLONE_2/Source_files/Cyclone.scad +++ b/Hardware/CYCLONE_2/Source_files/Cyclone.scad @@ -262,18 +262,18 @@ render_2D_or_3D() { - // TRANSLATE REFERENCE POSITION to the FRONT RIGHT Y rod idler, Y smooth rod end + // TRANSLATE REFERENCE POSITION to the FRONT LEFT Y rod idler, Y smooth rod end translate([-axes_Ysmooth_separation/2,-axes_Ysmooth_rodLen/2,axes_Yreference_height]) { if(draw_references) %frame(); - Cyclone_Y_rightSmoothRodIdler(); + Cyclone_Y_leftSmoothRodIdler(); } - // TRANSLATE REFERENCE POSITION to the FRONT LEFT Y rod idler, Y smooth rod end + // TRANSLATE REFERENCE POSITION to the FRONT RIGHT Y rod idler, Y smooth rod end translate([axes_Ysmooth_separation/2,-axes_Ysmooth_rodLen/2,axes_Yreference_height]) { if(draw_references) %frame(); - Cyclone_Y_leftSmoothRodIdler(); + Cyclone_Y_rightSmoothRodIdler(); }