03-05-2024, 08:42 AM
Hi, yes it's treating each lap as a separate path, which I guess is how it's designed to work. In the absence of a change to the code (which I can't think of), the impact can be lessened if we join the path in one of the straighter parts, rather than a curve. For example:
'points' coordinates
points = []
points[6] = [20,60]
points[7] = [50,30]
points[8] = [80,60]
points[0] = [80,60]
points[1] = [110,90]
points[2] = [140,60]
points[3] = [110,30]
points[4] = [80,60]
points[5] = [50,90]
All the best - Kevin
'points' coordinates
points = []
points[6] = [20,60]
points[7] = [50,30]
points[8] = [80,60]
points[0] = [80,60]
points[1] = [110,90]
points[2] = [140,60]
points[3] = [110,30]
points[4] = [80,60]
points[5] = [50,90]
All the best - Kevin