From 98781246c3c6f8fbd2f8f91f59a8e34c59dc2be9 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Saura Date: Thu, 10 Jul 2014 10:47:26 +0200 Subject: [PATCH] Merged Y rod idlers into Y frames source --- Hardware/CYCLONE_2/Cyclone.scad | 1 - .../CYCLONE_2/Cyclone_Y_SmoothRodIdlers.scad | 19 ------------------- Hardware/CYCLONE_2/Cyclone_Y_frames.scad | 13 +++++++++++++ 3 files changed, 13 insertions(+), 20 deletions(-) delete mode 100644 Hardware/CYCLONE_2/Cyclone_Y_SmoothRodIdlers.scad diff --git a/Hardware/CYCLONE_2/Cyclone.scad b/Hardware/CYCLONE_2/Cyclone.scad index f477177..1a1f52f 100644 --- a/Hardware/CYCLONE_2/Cyclone.scad +++ b/Hardware/CYCLONE_2/Cyclone.scad @@ -84,7 +84,6 @@ draw_references = true; include include include -include include include diff --git a/Hardware/CYCLONE_2/Cyclone_Y_SmoothRodIdlers.scad b/Hardware/CYCLONE_2/Cyclone_Y_SmoothRodIdlers.scad deleted file mode 100644 index d5a79e8..0000000 --- a/Hardware/CYCLONE_2/Cyclone_Y_SmoothRodIdlers.scad +++ /dev/null @@ -1,19 +0,0 @@ -// This file is part of Cyclone PCB Factory: an open-source 3D printable CNC machine for PCB manufacture -// http://reprap.org/wiki/Cyclone_PCB_Factory -// Original author: Carlosgs (http://carlosgs.es) -// License: CC BY-SA 4.0 (Attribution-ShareAlike 4.0 International, http://creativecommons.org/licenses/by-sa/4.0/) -// Designed with http://www.openscad.org/ - - -module Cyclone_Y_rightSmoothRodIdler() { - color("lightcyan") - translate([-5,0,-axes_Yreference_height]) { - cube([20,10,axes_Yreference_height+5]); - } -} - - -module Cyclone_Y_leftSmoothRodIdler() { - scale([-1,1,1]) Cyclone_Y_rightSmoothRodIdler(); -} - diff --git a/Hardware/CYCLONE_2/Cyclone_Y_frames.scad b/Hardware/CYCLONE_2/Cyclone_Y_frames.scad index e4991d1..93b9174 100644 --- a/Hardware/CYCLONE_2/Cyclone_Y_frames.scad +++ b/Hardware/CYCLONE_2/Cyclone_Y_frames.scad @@ -16,3 +16,16 @@ module Cyclone_Y_backFrame() { scale([1,-1,1]) Cyclone_Y_frontFrame(); } + +module Cyclone_Y_rightSmoothRodIdler() { + color("lightcyan") + translate([-5,0,-axes_Yreference_height]) { + cube([20,10,axes_Yreference_height+5]); + } +} + + +module Cyclone_Y_leftSmoothRodIdler() { + scale([-1,1,1]) Cyclone_Y_rightSmoothRodIdler(); +} +