forked from prusa3d/Original-Prusa-i3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Part to keep Y axis motor aligned with rods
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// PRUSA iteration3 | ||
// X carriage | ||
// GNU GPL v3 | ||
// Josef Průša <[email protected]> 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]); | ||
} |