Delete Y-distance.scad

This commit is contained in:
akukan 2017-11-29 17:11:05 +01:00 committed by GitHub
parent 035291391a
commit 7ee6ae3e08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 33 deletions

View File

@ -1,33 +0,0 @@
// PRUSA iteration3
// X carriage
// GNU GPL v3
// Josef Průša <iam@josefprusa.cz> 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]);
}