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.
Modified nut traps for square nuts
- Loading branch information
michalprusa
committed
May 12, 2016
1 parent
97fcdad
commit 9c9f244
Showing
2 changed files
with
70 additions
and
72 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 |
---|---|---|
@@ -1,72 +1,70 @@ | ||
// PRUSA iteration3 | ||
// X end idler | ||
// GNU GPL v3 | ||
// Josef Průša <[email protected]> and contributors | ||
// http://www.reprap.org/wiki/Prusa_Mendel | ||
// http://prusamendel.org | ||
|
||
use <x-end.scad> | ||
|
||
|
||
|
||
module x_end_idler_holes(){ | ||
x_end_holes(); | ||
translate([0,3.5,0]){ | ||
translate(v=[0,-22,30.25]) rotate(a=[0,-90,0]) cylinder(h = 80, r=1.8, $fn=30); | ||
translate(v=[1.5,-22,30.25]) rotate(a=[0,-90,0]) cylinder(h = 10, r=3.1, $fn=30); | ||
translate(v=[-21.5,-22,30.25]) rotate(a=[0,-90,0]) rotate(a=[0,0,30]) cylinder(h = 80, r=3.2, $fn=6); | ||
|
||
} | ||
} | ||
|
||
|
||
module waste_pocket(){ | ||
// waste pocket | ||
translate([-15,-1,6]) rotate([90,0,0]) cylinder( h=5, r=5, $fn=30); | ||
translate([-15,-1,51]) rotate([90,0,0]) cylinder( h=5, r=5, $fn=30); | ||
|
||
|
||
//M3 thread | ||
translate([-15,8.5,6]) rotate([90,0,0]) cylinder( h=12, r=1.4, $fn=30); | ||
translate([-15,8.5,51]) rotate([90,0,0]) cylinder( h=12, r=1.4, $fn=30); | ||
|
||
//M3 heads | ||
translate([-15,11.5,6]) rotate([90,0,0]) cylinder( h=4, r=2.9, $fn=30); | ||
translate([-15,11.5,51]) rotate([90,0,0]) cylinder( h=4, r=2.9, $fn=30); | ||
|
||
//M3 nut traps | ||
translate([-15,3.5,6]) rotate([90,90,0]) cylinder( h=3, r=3.3, $fn=6); | ||
translate([-15,3.5,51]) rotate([90,90,0]) cylinder( h=3, r=3.3, $fn=6); | ||
translate([-17.9,0.5,52]) cube([5.8,3.1,20]); | ||
translate([-17.9,0.5,-10]) cube([5.8,3.1,16]); | ||
} | ||
|
||
|
||
module x_end_idler_base(){ | ||
union(){ | ||
difference(){ | ||
x_end_base(); | ||
x_end_idler_holes(); | ||
} | ||
translate([-15,8.5,6]) rotate([90,0,0]) cylinder( h=11, r=6, $fn=30); | ||
translate([-15,8.5,51]) rotate([90,0,0]) cylinder( h=11, r=6, $fn=30); | ||
} | ||
} | ||
|
||
|
||
module x_end_idler(){ | ||
mirror([0,1,0]) | ||
difference(){ | ||
x_end_idler_base(); | ||
waste_pocket(); | ||
|
||
} | ||
|
||
} | ||
|
||
//difference(){ | ||
x_end_idler(); | ||
//translate([-15,-50,0]) cube([100,100,100]); | ||
//} | ||
|
||
|
||
// PRUSA iteration3 | ||
// X end idler | ||
// GNU GPL v3 | ||
// Josef Průša <[email protected]> and contributors | ||
// http://www.reprap.org/wiki/Prusa_Mendel | ||
// http://prusamendel.org | ||
|
||
use <x-end.scad> | ||
|
||
|
||
|
||
module x_end_idler_holes(){ | ||
x_end_holes(); | ||
translate([0,3.5,0]){ | ||
translate(v=[0,-22,30.25]) rotate(a=[0,-90,0]) cylinder(h = 80, r=1.8, $fn=30); | ||
translate(v=[1.5,-22,30.25]) rotate(a=[0,-90,0]) cylinder(h = 10, r=3.1, $fn=30); | ||
translate(v=[-21.5,-22,30.25]) rotate(a=[0,-90,0]) rotate(a=[0,0,30]) cylinder(h = 80, r=3.2, $fn=6); | ||
|
||
} | ||
} | ||
|
||
|
||
module waste_pocket(){ | ||
// waste pocket | ||
translate([-15,-1,6]) rotate([90,0,0]) cylinder( h=5, r=5, $fn=30); | ||
translate([-15,-1,51]) rotate([90,0,0]) cylinder( h=5, r=5, $fn=30); | ||
|
||
|
||
//M3 thread | ||
translate([-15,8.5,6]) rotate([90,0,0]) cylinder( h=12, r=1.4, $fn=30); | ||
translate([-15,8.5,51]) rotate([90,0,0]) cylinder( h=12, r=1.4, $fn=30); | ||
|
||
//M3 heads | ||
translate([-15,11.5,6]) rotate([90,0,0]) cylinder( h=4, r=2.9, $fn=30); | ||
translate([-15,11.5,51]) rotate([90,0,0]) cylinder( h=4, r=2.9, $fn=30); | ||
|
||
//M3 nut traps | ||
translate([-17.9,0.5,52-3-1.6]) cube([5.8,3.1,20]); | ||
translate([-17.9,0.5,-10+1.5+1.6]) cube([5.8,3.1,16]); | ||
} | ||
|
||
|
||
module x_end_idler_base(){ | ||
union(){ | ||
difference(){ | ||
x_end_base(); | ||
x_end_idler_holes(); | ||
} | ||
translate([-15,8.5,6]) rotate([90,0,0]) cylinder( h=11, r=6, $fn=30); | ||
translate([-15,8.5,51]) rotate([90,0,0]) cylinder( h=11, r=6, $fn=30); | ||
} | ||
} | ||
|
||
|
||
module x_end_idler(){ | ||
mirror([0,1,0]) | ||
difference(){ | ||
x_end_idler_base(); | ||
waste_pocket(); | ||
|
||
} | ||
|
||
} | ||
|
||
//difference(){ | ||
x_end_idler(); | ||
//translate([-15,-50,0]) cube([100,100,100]); | ||
//} | ||
|
||
|
Binary file not shown.