8 lines
142 B
Python
8 lines
142 B
Python
|
from robofab.world import CurrentGlyph
|
||
|
|
||
|
myGlyph = CurrentGlyph()
|
||
|
|
||
|
print len(myGlyph)
|
||
|
|
||
|
for myPoint in myGlyph[0].bPoints:
|
||
|
print myPoint.anchor
|