forked from Metamaquina/Metamaquina2Beta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlm8uu-holder.scad
51 lines (44 loc) · 1.15 KB
/
lm8uu-holder.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// (c) 2013 Felipe C. da S. Sanches <fsanches@metamaquina.com.br>
// Lincensed under the terms of the GNU General Public License
// version 3.
//
// Based on:
//
// PRUSA Mendel
// Y bushing holder
// Used for sliding on X axis
// GNU GPL v3
// Josef Průša
// josefprusa@me.com
// prusadjs.cz
// http://www.reprap.org/wiki/Prusa_Mendel
// http://github.com/prusajr/PrusaMendel
include <configuration.scad>
/**
* @id lm8uu-holder
* @name LM8UU Holder
* @category Printed
* @using 4 m3washer
* @using 2 m3x15xhex
* @using 2 m3nut
*/
snap_in_mount = false;
use <bushing.scad>
module lm8uu_holder(linear_bearing=true){
if(linear_bearing==false){
translate(v = [0,0,-2.05]) difference(){
union(){
translate(v = [0,0,5.05/2]) cube(size = [33,10,5.05], center = true);
//translate(v = [0,0,1.5]) cube(size = [16,20,3], center = true);
translate(v = [0,0,5]) rotate(a=[0,0,0]) standart_bushing();
}
translate(v = [12, 0, -2]) polyhole(m3_diameter, 12);
translate(v = [-12, 0, -2]) polyhole(m3_diameter, 12);
translate(v = [0,0,2.0/2]) cube(size = [34,120,2.05], center = true);
}
}else{
// Greg Frosts
y_linear_bearings();
}
}
ybushing(linear);