-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsandwich_test_panel.scad
76 lines (59 loc) · 1.78 KB
/
sandwich_test_panel.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// (c) 2013 Metamáquina <http://www.metamaquina.com.br/>
//
// Author:
// * Felipe C. da S. Sanches <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
include <Metamaquina2.h>;
module sandwich_test_panel(){
translate([320, 50])
XCarriage_sandwich_face();
translate([440, 50])
rotate(90)
XCarriage_bottom_face();
translate([280, 230])
XEndMotor_plain_face();
translate([350, 230])
XEndIdler_plain_face();
translate([280, 280])
XEndMotor_belt_face();
translate([350, 280])
XEndIdler_belt_face();
translate([80, 210])
XEnd_front_face();
translate([180, 210])
mirror([1,0])
XEnd_front_face();
translate([80, 280])
XEndMotor_back_face();
translate([180, 280])
XEndIdler_back_face();
translate([220,140])
XPlatform_bottom_face();
translate([85,110])
set_of_M4_spacers(h=3, w=8);
translate([200,115])
set_of_M3_spacers(w=6);
translate([25,50])
for (i=[0:5])
translate([i*45,0]){
difference(){
generic_bearing_sandwich_face(H=XPlatform_height, sandwich_tightening = i*2/5);
rotate(45)
for (j=[0:i])
translate([-i/2+j,0]) square([0.3,3]);
}
}
}
sandwich_test_panel();