more doc moving
[clinton/prusa3.git] / doc / complete-printer.scad
CommitLineData
2159eed1
VAH
1// PRUSA iteration3
2// Complete printer visualisation
0a84ec19
VAH
3// GNU GPL v3
4// Greg Frost
5// http://www.reprap.org/wiki/Prusa_Mendel
6// http://github.com/prusajr/PrusaMendel
7
f7aa2311
VAH
8include <../configuration.scad>
9use <../y-driverain.scad>
10use <../y-axis-corner.scad>
0a84ec19
VAH
11
12//motor and idler holding parts
699eb60c 13translate([70,10,0]) rotate([0,90,0]) rotate([0,0,90]) motorholder();
3ade0448 14translate([84, 367, 22]) rotate([0,-90,0]) idlermount();
0a84ec19
VAH
15// corners
16leftfront();
3ade0448
VAH
17translate([125,0,0]) mirror([1,0,0]) leftfront();
18translate([0,410,0]) mirror([0,1,0]){
0a84ec19 19 leftfront();
3ade0448 20 translate([125,0,0]) mirror([1,0,0]) leftfront();
0a84ec19
VAH
21 // back bottom threaded rod
22 color("Aqua")
3ade0448 23 translate([-10,10,10]) rotate([0,90,0]) cylinder(h = 125, r=4);
0a84ec19
VAH
24
25 // back top threaded rod
26 color("Aqua")
3ade0448 27 translate([0,10,30]) rotate([0,90,0]) cylinder(h = 125, r=4);
0a84ec19
VAH
28}
29
30// front bottom threaded rod
31color("Aqua")
3ade0448 32translate([0,10,10]) rotate([0,90,0]) cylinder(h = 125, r=4);
0a84ec19
VAH
33
34// front top threaded rod
35color("Aqua")
3ade0448 36translate([0,10,30]) rotate([0,90,0]) cylinder(h = 125, r=4);
0a84ec19
VAH
37
38// left top rod
39color("MediumBlue")
3ade0448 40translate([0,2.2,45]) rotate([0,90,90]) cylinder(h = 405, r=4);
0a84ec19
VAH
41//left bottom rod
42color("Aqua")
3ade0448 43translate([3,0,20]) rotate([0,90,90]) cylinder(h = 420, r=4);
0a84ec19
VAH
44
45// right top rod
46color("MediumBlue")
3ade0448 47translate([125,2.2,45]) rotate([0,90,90]) cylinder(h = 405, r=4);
0a84ec19
VAH
48//right bottom rod
49color("Aqua")
3ade0448 50translate([125-3,0,20]) rotate([0,90,90]) cylinder(h = 420, r=4);
699eb60c
VAH
51
52
53//heat bed
54color("Lime")
55translate([125/2,330,58]) cube([225,225,6], center=true);