Grow Y axis corners up when needed
[clinton/prusa3.git] / box_frame / 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 block_height = y_threaded_rod_long_r * 2 + 6 * layer_height;
13 rotate([0, 90, 0])
14 difference(){
15 translate([block_height / 2, 0, 0]) cube([block_height, 30, 10], center=true);
16 translate([y_threaded_rod_long_r - 0.4, 0, 0])
17 cylinder(r= y_threaded_rod_long_r - 0.3 , h=20, center=true);
18 cube(size=[y_threaded_rod_long_r * 2, y_threaded_rod_long_r * 2 - 1, 50], center=true);
19 translate([block_height + 0.2, 10, 0]) rotate([0, -90, 0]) screw(head_drop=5);
20 translate([block_height + 0.2, -10, 0]) rotate([0, -90, 0]) screw(head_drop=5);
21 }
22 }
23
24
25 rodclamp();
26