1
1
mirror of https://github.com/rsms/inter.git synced 2024-08-15 13:50:55 +03:00

tooling: make postprocess-designspace.py infer opsz range instead of using hard-coded values

This commit is contained in:
Rasmus Andersson 2023-05-30 13:55:37 -07:00
parent 106217ed57
commit 9ebede5a55

View File

@ -46,12 +46,26 @@ def update_version(ufo):
def fix_opsz_range(designspace):
# TODO: find extremes by looking at the source
for a in designspace.axes:
if a.tag == "opsz":
a.minimum = 14
a.maximum = 32
opsz_min = 1000000
opsz_max = 0
opsz_name = ''
opsz_axis = None
for opsz_axis in designspace.axes:
if opsz_axis.tag == "opsz":
opsz_name = opsz_axis.name
break
for instance in designspace.instances:
opsz_value = instance.location[opsz_name]
if opsz_value < opsz_min:
opsz_min = opsz_value
if opsz_value > opsz_max:
opsz_max = opsz_value
opsz_axis.minimum = opsz_min
opsz_axis.maximum = opsz_max
return designspace