Refactored corners
[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]) cylinder(r=4.1,h=20,center=true,$fn=32);
15 translate([-5,0,0]) cube(size=[4.1,8.2,10], center=true);
16
17 translate([7,10,0]) rotate([0,-90,0]) screw(head_drop=5);
18 translate([7,-10,0]) rotate([0,-90,0]) screw(head_drop=5);
19 }
20 }
21
22
23 rodclamp();
24