-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplaceholder-gallery.scad
47 lines (43 loc) · 964 Bytes
/
placeholder-gallery.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
use <3535-led.scad>
use <hex-nut-and-bolt.scad>
use <ic-socket.scad>
use <keycap.scad>
use <keyswitch.scad>
use <m3-hex-nut.scad>
use <m3-screw.scad>
use <micro-usb-breakout.scad>
use <promicro.scad>
use <tee-nut.scad>
use <trrs-breakout.scad>
module display() {
for (i=[0:$children-1]) {
translate([30 * (i - $children/2), 30, 0]) children(i);
}
for (i=[0:$children-1]) {
$detail=true;
translate([30 * (i - $children/2), 0, 0]) children(i);
}
for (i=[0:$children-1]) {
$detail=true;
translate([30 * (i - $children/2), -30, 0]) children(i);
}
for (i=[0:$children-1]) {
$detail=true;
$clearance=1;
#translate([30 * (i - $children/2), -30, 0]) children(i);
}
}
display() {
led();
hex_nut();
hex_bolt();
socket(center=true);
kailh_choc_keycap();
kailh_choc_switch();
m3_hex_nut();
m3_screw();
micro_usb_breakout(center=true);
pro_micro(center=true);
tee_nut();
trrs_breakout(center=true);
}