11 lines
191 B
Python
Executable File
11 lines
191 B
Python
Executable File
#FLM: Remove overlap
|
|
|
|
from robofab.world import CurrentFont, CurrentGlyph
|
|
|
|
myFont = CurrentFont()
|
|
myGlyph = CurrentGlyph()
|
|
|
|
if myGlyph:
|
|
myGlyph.removeOverlap()
|
|
myGlyph.update()
|
|
print "Done" |