Miter or angle corner filter?

That is the attempt of storing the corners in the .ufo. You can ignore it for now.

1 Like

This is a node name. You can get rid of all node names in your font by running this script in Window > Macro Panel:

for g in Font.glyphs:
	for l in g.layers:
		for p in l.paths:
			for n in p.nodes:
				n.name = None
print "Done."
1 Like