11 lines
207 B
Python
11 lines
207 B
Python
|
# robothon06
|
||
|
# set font info in all fonts
|
||
|
|
||
|
from robofab.world import AllFonts
|
||
|
for font in AllFonts():
|
||
|
font.info.familyName = "MyFamily"
|
||
|
font.info.ascender = 700
|
||
|
font.info.descender = -300
|
||
|
font.update()
|
||
|
|