Hello, I am on a task to rearrange a few groups of XY points to form a polygon. To begin the task, I need to merge two group of XY lists together alternatively like a zipper. Do you know there is a List node I can achieve the result?
For example . . .
List #1: (0,0), (2,2), (4,4), (6,6), (8,8)
List #2: (1,1), (3,3), (5,5), (7,7), (9,9)
Result: (0,0), (1,1), (2,2), (3,3), (4,4), (5,5), (6,6), (7,7), (8,8), (9,9)