-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtrace_segments.py
64 lines (53 loc) · 2.17 KB
/
trace_segments.py
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
#!/usr/bin/python
import json
def upvTraceSegments(upv_trace_segments, bounds):
"""
Routes
"""
bottom = {}
top = {}
count = 0
for trace_segment in upv_trace_segments:
count += 1
#Error handling for future improvement
#All of these will probably get triggered as soon as someone uses curved lines
if trace_segment['trace_type'] != 'straight':
raise ValueError('I haven\'t seen this trace type before! Please report an issue!')
if len(trace_segment['control_points']) > 0:
raise ValueError('I haven\'t seen trace_segment control points used before! Please report an issue!')
if len(trace_segment) != 6 and len(trace_segment) != 7:
raise ValueError('Wrong number of trace_segment children! Please report an issue!')
bounding_box_x = bounds['max_x'] - bounds['min_x']
translate_x = bounds['min_x']
translate_x += bounding_box_x / 2
bounding_box_y = bounds['max_y'] - bounds['min_y']
translate_y = bounds['min_y']
translate_y += bounding_box_y / 2
x1 = str(nmToMm(trace_segment['p1']['x'] - translate_x))
y1 = str(-1 * nmToMm(trace_segment['p1']['y'] - translate_y))
x2 = str(nmToMm(trace_segment['p2']['x'] - translate_x))
y2 = str(-1 * nmToMm(trace_segment['p2']['y'] - translate_y))
value = 'M ' + \
x1 + ',' + \
y1 + ' ' + \
x2 + ',' + \
y2
line = {
'stroke-width': nmToMm(trace_segment['width']),
'style': 'stroke',
'type': 'path',
'value': value
}
if trace_segment['layer'] == 'top copper':
top[str(count)] = line
elif trace_segment['layer'] == 'bottom copper':
bottom[str(count)] = line
else:
raise ValueError('I haven\'t seen this trace type before! Please report an issue!')
routes = {
'routes': {'top': top, 'bottom': bottom}
}
print(count, "trace_segments processed")
return(routes)
def nmToMm(nm):
return (int(nm) / 1000000)