10 lines
224 B
Python
10 lines
224 B
Python
# robothon06
|
|
# work with kerning 4
|
|
from robofab.world import CurrentFont
|
|
font = CurrentFont()
|
|
kerning = font.kerning
|
|
for left, right in kerning.keys():
|
|
if left == "acircumflex":
|
|
print left, right, kerning[(left, right)]
|
|
|