thats a step forward…
# Phython-Standard- und DesignScript-Bibliotheken laden
import sys
import clr
clr.AddReference('ProtoGeometry')
from Autodesk.DesignScript.Geometry import *
# Die Eingaben für diesen Block werden in Form einer Liste in den IN-Variablen gespeichert.
points = IN[0]
morepoints = IN[1]
OUT = []
for i in zip(points,morepoints):
OUT.append(i)
I just used transpose with levels again, Thanks a lot
this is Great Gilberto , Thanks a lot
List.Combine with a List.Join as combinator also might work
Amigo @Daan, I have tried it and it actually works, just be careful to add the same amount of lists in both nodes, thanks for the tip!



