-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSuchmaschine_10.scad
283 lines (225 loc) · 7.87 KB
/
Suchmaschine_10.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
//Variablen Menschen
ms = 1.27; //Skalierung des Mannes Größter = 190 cm
boxc_r = .7;
boxc_g = .5;
boxc_b = .5;
boxc_a = 1; //Sichtbarkeit, 1 = voll
//variablen Box
box_h = 200;
box_b = 200; //Breite der Box
box_t = 80; // Tiefe der Box
box_l = 0; //Lift, im Transportbetrieb
box_d = 0.3; //Dicke der Platten in mm
//variablen Geruest
//Farbe
gerc_r = .7;
gerc_g = .8;
gerc_b = .7;
gerc_a = 1; //Sichtbarkeit, 1 = voll
holz_b = 2.4; //Kantholz, 1 = voll
holz_l = 3.8;
//Variablen Monitor
monitor_b = 30;
monitor_h = 22;
monitor_z =150;
//Aufruf
geruest_vorne_hinten();
geruest_seiten();
//box(); //-Schraegstriche entfernen um box zu zeigen
//people_stand(); //-Schraegstriche entfernen um Menschen zu zeigen
//people_walk(); //-Schraegstriche entfernen um Menschen zu zeigen
module people_stand()
{
difference()
{
union()
{
//Mann 1
translate([90,0,-4])
scale([ms,ms,ms])
rotate([0,0,90])
import("man_1.stl", convexity=3);
//Mann 2
translate([105,60,-4])
scale([ms,ms,ms])
rotate([0,0,90])
import("man_3.stl", convexity=3);
//Mann 3
translate([60,60,-4])
scale([ms,ms,ms])
rotate([0,0,90])
import("man_2.stl", convexity=3);
//Mann 3
translate([90,120,-4])
scale([ms,ms,ms])
rotate([0,0,90])
import("man_2.stl", convexity=3);
}
union()
{
translate([0,0,-5])
cube([200, 500, 5]);
}
}
}
module people_walk()
{
difference()
{
union()
{
//Mann 1
translate([0,0,-4])
scale([ms,ms,ms])
rotate([0,0,0])
import("man_1.stl", convexity=3);
//Mann 2
translate([0,60,-4])
scale([ms,ms,ms])
rotate([0,0,0])
import("man_3.stl", convexity=3);
//Mann 3
translate([0,120,-4])
scale([ms,ms,ms])
rotate([0,0,0])
import("man_2.stl", convexity=3);
}
union()
{
translate([0,0,-5])
cube([200, 500, 5]);
}
}
}
module geruest_vorne_hinten()
{
difference()
{
union()
{
//Hinterseite Box links hinten
translate([box_d,box_d, holz_l])
color([gerc_r, gerc_g, gerc_b, gerc_a])
cube([holz_b,holz_l,box_h - box_d - holz_l * 2]);
//Hinterseite Box rechts hinten
translate([box_d,box_b - box_d - holz_l,holz_l])
color([gerc_r, gerc_g, gerc_b, gerc_a])
cube([holz_b,holz_l,box_h - box_d - holz_l * 2]);
//Hinterseite Box unten
translate([box_d,box_d, 0])
color([gerc_r, gerc_g / 2, gerc_b, gerc_a])
cube([holz_b, box_b - box_d * 2, holz_l]);
//Hinterseite Box oben
translate([box_d,box_d,box_h - box_d - holz_l])
color([gerc_r, gerc_g / 2, gerc_b, gerc_a])
cube([holz_b, box_b - box_d * 2, holz_l]);
//Vorderseite Box links vorn
translate([box_t - box_d - holz_b,box_d, holz_l])
color([gerc_r, gerc_g, gerc_b, gerc_a])
cube([holz_b,holz_l,box_h - box_d - holz_l * 2]);
//Vorderseite Box rechts vorn
translate([box_t - box_d - holz_b,box_b - box_d - holz_l, holz_l])
color([gerc_r, gerc_g, gerc_b, gerc_a])
cube([holz_b,holz_l,box_h - box_d - holz_l * 2]);
//Vorderseite Box unten
translate([box_t - box_d - holz_b, box_d, 0])
color([gerc_r, gerc_g / 2, gerc_b, gerc_a])
cube([holz_b, box_b - box_d * 2, holz_l]);
//Vorderseite Box oben
translate([box_t - box_d - holz_b, box_d ,box_h - box_d - holz_l])
color([gerc_r, gerc_g / 2, gerc_b, gerc_a])
cube([holz_b, box_b - box_d * 2, holz_l]);
//Monitorstrebe unten
translate([box_t - box_d - holz_b, box_d + holz_l, monitor_z - holz_l])
color([gerc_r, gerc_g / 2, gerc_b, gerc_a])
cube([holz_b, box_b - box_d * 2 - holz_l*2, holz_l]);
//Monitorstrebe oben
translate([box_t - box_d - holz_b, box_d + holz_l, monitor_z + monitor_h])
color([gerc_r, gerc_g / 2, gerc_b, gerc_a])
cube([holz_b, box_b - box_d * 2 - holz_l*2, holz_l]);
}
union()
{
//Elemente Minus
}
}
}
module geruest_seiten()
{
difference()
{
union()
{
//Linke Seite unten
translate([box_d + holz_b,box_d,0])
color([gerc_r/2, gerc_g, gerc_b, gerc_a])
cube([box_t - box_d*2 - holz_b * 2 ,holz_b, holz_l]);
//Linke Seite oben
translate([box_d + holz_b,box_d,box_h - holz_l - box_d])
color([gerc_r/2, gerc_g, gerc_b, gerc_a])
cube([box_t - box_d*2 - holz_b * 2 ,holz_b, holz_l]);
//linke Seiten hinten
translate([box_d + holz_b,box_d, holz_l])
color([gerc_r, gerc_g, gerc_b/2, gerc_a])
cube([holz_l,holz_b,box_h - box_d - holz_l * 2]);
//linke Seiten vorn
translate([box_t - box_d - holz_l - holz_b ,box_d, holz_l])
color([gerc_r, gerc_g, gerc_b/2, gerc_a])
cube([holz_l,holz_b,box_h - box_d - holz_l * 2]);
//rechte Seite unten
translate([box_d + holz_b,box_b - holz_b - box_d,0])
color([gerc_r/2, gerc_g, gerc_b, gerc_a])
cube([box_t - box_d*2 - holz_b * 2 ,holz_b, holz_l]);
//rechte Seite oben
translate([box_d + holz_b,box_b - holz_b - box_d,box_h - holz_l - box_d])
color([gerc_r/2, gerc_g, gerc_b, gerc_a])
cube([box_t - box_d*2 - holz_b * 2 ,holz_b, holz_l]);
//rechte Seiten hinten
translate([box_d + holz_b,box_b - holz_b - box_d, holz_l])
color([gerc_r, gerc_g / 2, gerc_b / 2, gerc_a])
cube([holz_l,holz_b,box_h - box_d - holz_l * 2]);
//rechte Seiten vorn
translate([box_t - box_d - holz_l - holz_b ,box_b - holz_b - box_d, holz_l])
color([gerc_r, gerc_g, gerc_b/2, gerc_a])
cube([holz_l,holz_b,box_h - box_d - holz_l * 2]);
}
union()
{
}
}
}
module box()
{
difference()
{
union()
{
//Platten vorn
color([boxc_r * .75, boxc_g * .5, boxc_b,boxc_a])
translate([0,0,box_l])
cube([box_d,box_b,box_h]);
//Platten hinten
color([boxc_r * .75, boxc_g * .5, boxc_b,boxc_a])
translate([box_t - box_d,0,box_l])
cube([box_d,box_b,box_h]);
//Platten rechts
color([boxc_r, boxc_g, boxc_b, boxc_a])
translate([box_d,0,box_l])
cube([box_t - box_d*2,box_d,box_h]);
//Platten links
color([boxc_r, boxc_g, boxc_b, boxc_a])
translate([box_d,box_b-box_d,box_l])
cube([box_t - box_d*2,box_d,box_h]);
//Platten oben
color([boxc_r * .7, boxc_g * .7, boxc_b * .7, boxc_a])
translate([box_d,box_d,box_h - box_d])
cube([box_t - 2 * box_d,box_b - 2 * box_d,box_d]);
}
union()
{
//Elemente Minus
translate([box_t - 1, box_b / 2 - monitor_b / 2, monitor_z])
cube([box_d + 2, monitor_b, monitor_h]);
}
}
}