I´m working with python in Rhino 3D and have following problem. I have two Lists representing points. List one for example:
StartPoints = [[x1,y1,z1],[x2,y2,z2],[x3,y3,z3]]
and the second list is:
EndPoints = [[x4,y4,z4],[x5,y5,z5],[x6,y6,z6]]
My goal is to join them in following form:
MergedPoints = [[x1,y1,z1],[x2,y2,z2],[x3,y3,z3],[x4,y4,z4],[x5,y5,z5]]
Everything I tried didn´t worked. When I use zip it gives me 3 branches with 3 elements. When I try to use map it says "Point3d is not callabe". My Goal is one List with 6 points just like the merge element in grasshopper would give. Thanks for your help!