forked from josefprusa/PrusaMendel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ybrac-t.scad
31 lines (28 loc) · 829 Bytes
/
ybrac-t.scad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// PRUSA Mendel
// Y motor bracket by Spacexula!!
// GNU GPL v2
// Josef Průša
// prusadjs.cz
// http://www.reprap.org/wiki/Prusa_Mendel
// http://github.com/prusajr/PrusaMendel
include <configuration.scad>
/**
* @id y-motor-bracket
* @name Y motor bracket
* @link y-motor-bracket
* @category Printed
* @using 3 m3washer
* @using 3 m3x10
*/
module ybract(){
difference(){
translate([7,4.5])rotate([0,0,90])mirror()linear_extrude(file="ybrac-t.dxf",height=7);
translate([3.4,30.05,10])cylinder(h=30,r=m8_diameter/2, center=true);
translate([-26,-21,10])cylinder(h=30,r=m8_diameter/2, center=true);
translate([33.5,-20.5,10])cylinder(h=30,r=4.4/2, center=true);
translate([4.5,-10,10])cylinder(h=30,r=4.4/2, center=true);
translate([15,19.2,10])cylinder(h=30,r=4.4/2, center=true);
}
}
ybract();