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
|
t = 2;
pcb_dim = [30, 65, 1.4];
margins = [
[1, 1],
[3.6, 1.7],
[3.5, 27]
];
base_drilling = [3.5, 3.5];
dx = [23, 0];
dy = [0, 58];
drillings = [
base_drilling,
base_drilling + dx,
base_drilling + dy,
base_drilling + dx + dy
];
// TODO deprecated parameters
tol = 1;
base_socket = [3/2+2.3+2*t+tol,3/2+2.1+2.7+t+tol];
dim = [
base_socket[0] + dx[0] + 3/2 + 4 + 2*t + tol,
base_socket[1] + dy[1] + 3/2 + 2 + 0.9 + 6 + t + tol,
39 // TODO
];
h = 10; // TODO
|