-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpours.py
66 lines (48 loc) · 1.48 KB
/
pours.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
65
66
#!/usr/bin/python
import json
def upvPours(upv_pours):
"""
Pours
"""
count = 0
pours = {}
pour_instances = {}
for pour in upv_pours:
pours[str(count)] = {'layout': {'pours': {'shapes': [genPour(pour)] } } }
#layer
if pour['layer'][0:3] == 'top':
layer = 'top'
elif pour['layer'][0:6] == 'bottom':
layer = 'bottom'
else:
raise ValueError("I haven\'t seen pour layer %s before! Please report an issue!" % pour['layer'])
pour_instances['pour' + str(count)] = {
'footprint': str(count),
'layer': layer,
'location': [0, 0],
'rotate': 180,
'show': True
}
count += 1
print(count, "pours processed")
return(pours, pour_instances)
def genPour(data):
count = 0
#todo: find more than first one
points = data['polygons']['polygons'][0]['outline']['points']
value = ''
for point in points:
if count == 0:
value = 'M ' + str(nmToMm(point['x'])) + ',' + str(nmToMm(point['y']))
else:
value += 'L' + str(nmToMm(point['x'])) + ',' + str(nmToMm(point['y']))
count += 1
value += ' z'
pour = {
'style': 'fill',
'type': 'path',
'value': value
}
return(pour)
def nmToMm(nm):
return(int(nm) / 1000000)