insertNodeWithPathTime_ The method can insert points in glyphs3 and plugins, but points cannot be inserted in the macro panel of glyphs2. Why is this the same code?
for thisPath in Layer.paths:
for thisNode in thisPath.nodes[::-1]:
if thisNode.type == LINE:
segmentCorners = 3
for i in range(1, segmentCorners+1):
output = 1 / (segmentCorners + 1 - i)
pathTime = thisNode.index+(output)
thisPath.insertNodeWithPathTime_(pathTime)