14 lines
263 B
Python
14 lines
263 B
Python
|
# robofab manual
|
||
|
# Buildingaccents howto
|
||
|
# usage examples
|
||
|
|
||
|
|
||
|
from robofab.world import CurrentFont
|
||
|
|
||
|
f = CurrentFont()
|
||
|
f.newGlyph("aacute")
|
||
|
f["aacute"].appendComponent("a")
|
||
|
f["aacute"].appendComponent("acute", (200, 0))
|
||
|
f["aacute"].width = f["a"].width
|
||
|
f.update()
|