From 0265c98b16dff87e6fcdb8a97dbed5e515dddeee Mon Sep 17 00:00:00 2001 From: akukan Date: Tue, 25 Oct 2016 09:12:01 +0200 Subject: [PATCH] Y-distance added Part to keep Y axis motor aligned with rods --- Printed-Parts/scad/Y-distance.scad | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Printed-Parts/scad/Y-distance.scad diff --git a/Printed-Parts/scad/Y-distance.scad b/Printed-Parts/scad/Y-distance.scad new file mode 100644 index 0000000..387740d --- /dev/null +++ b/Printed-Parts/scad/Y-distance.scad @@ -0,0 +1,33 @@ +// PRUSA iteration3 +// X carriage +// GNU GPL v3 +// Josef Průša and contributors +// http://www.reprap.org/wiki/Prusa_Mendel +// http://prusamendel.org + +difference() +{ + +//body +union() +{ + translate([3,-18,0]) cube([5,36,10]); + translate([8,-18,0]) cube([4,36,10]); +} + + +union() +{ + //rods + translate(v = [4,-10,-1]) cylinder(h = 12, r=4, $fn=50); + translate(v = [4,10,-1]) cylinder(h = 12, r=4, $fn=50); + //cables + translate([10,5,3]) cube([8,9,10]); +} + + //corners + translate([-5,24,3]) rotate([45,0,0]) cube([20,10,10]); + translate([-5,24,-7]) rotate([45,0,0]) cube([20,10,10]); + translate([-5,-24,3]) rotate([45,0,0]) cube([20,10,10]); + translate([-5,-24,-7]) rotate([45,0,0]) cube([20,10,10]); +} \ No newline at end of file