made Y idler configurable by bearing size, also made it square for perfect print...
[clinton/prusa3.git] / y-bottom-plate-mount.scad
1 // PRUSA iteration3
2 // GNU GPL v3
3 // Josef Průša
4 // josefprusa@me.com
5 // prusadjs.cz
6
7
8 include <configuration.scad>
9
10
11 module rodclamp(){
12 rotate([0,-270,0]) difference(){
13 cube([14,30,10],center=true);
14 translate([-3,0,0]){
15 cylinder(r=4.1,h=20,center=true,$fn=32);
16 translate([4.1/-2,0,0]) cube(size=[4.1,4.1*2,50],center=true);
17 }
18 translate([7,10,0]) rotate([0,-90,0]) screw(head_drop=5);
19 translate([7,-10,0]) rotate([0,-90,0]) screw(head_drop=5);
20 }
21 }
22
23
24 rodclamp();
25