-
Notifications
You must be signed in to change notification settings - Fork 0
/
ytable.scad
38 lines (35 loc) · 1019 Bytes
/
ytable.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
difference() {
square(size=[220,220], center=true);
translate([0,-71]) {
circle(d=40);
translate([0,-20]) square(size=[40,40], center=true);
}
translate([0,71]) {
circle(d=40);
translate([0,20]) square(size=[40,40], center=true);
}
translate([104.5,104.5]) circle(d=3);
translate([104.5,-104.5]) circle(d=3);
translate([-104.5,104.5]) circle(d=3);
translate([-104.5,-104.5]) circle(d=3);
translate([-70,60]) {
translate([-16,0]) circle(d=3);
translate([16,0]) circle(d=3);
}
translate([-70,-60]) {
translate([-16,0]) circle(d=3);
translate([16,0]) circle(d=3);
}
translate([70,60]) {
translate([-16,0]) circle(d=3);
translate([16,0]) circle(d=3);
}
translate([70,-60]) {
translate([-16,0]) circle(d=3);
translate([16,0]) circle(d=3);
}
translate([0,0]) {
#translate([0,9.5]) circle(d=3);
translate([0,-9.5]) circle(d=3);
}
}