8 lines
183 B
Python
8 lines
183 B
Python
# robothon06
|
|
# interpolate two glyphs in the same font
|
|
from robofab.world import CurrentFont
|
|
f = CurrentFont()
|
|
factor = 0.5
|
|
f["C"].interpolate(factor, f["A"], f["B"])
|
|
f["C"].update()
|