z-axis: shift mounts to under parts
[clinton/prusa3.git] / box_frame / extras / bearing-holder-single-plate-y.scad
1 //Part that fixes bearings to alu Y plate. For us ziptie haters;)
2 /// use with M3x20 countersunk screws
3 // GNU GPL v3
4 // Václav 'ax' Hůla <axtheb@gmail.com>
5 include <../configuration.scad>;
6
7 module bearingholdersingleplate(){
8 difference(){
9 translate([0, -25/2, 0]) cube([10, 25, 9]);
10 translate([-1, 0, 0]) rotate([0,90,0]) cylinder(r=7.7, h=21);
11 mirror([0, 0, 1]) translate([5, -19/2, -9]) screw();
12 mirror([0, 0, 1]) translate([5, 19/2, -9]) screw();
13 }
14 }
15
16
17 mirror([0, 0, 1]) bearingholdersingleplate();