リストを繰り返し処理しています。反復中に要素をこのリストに追加できます。したがって、問題は、ループがこのリストの元の長さだけを反復することです。
私のコード:
i = 1
for p in srcPts[1:]: # skip the first item.
pt1 = srcPts[i - 1]["Point"]
pt2 = p["Point"]
d = MathUtils.distance(pt1, pt2)
if (D + d) >= I:
qx = pt1.X + ((I - D) / d) * (pt2.X - pt1.X)
qy = pt1.Y + ((I - D) / d) * (pt2.Y - pt1.Y)
q = Point(float(qx), float(qy))
# Append new point q.
dstPts.append(q)
# Insert 'q' at position i in points s.t. 'q' will be the next i.
srcPts.insert(i, {"Point": q})
D = 0.0
else:
D += d
i += 1
使用してみfor i in range(1, len(srcPts)):
ましたが、リストにアイテムを追加しても範囲は同じままです。