Hello Guys,
I am trying to join all the walls in each sub-list, from node List.FilterbyBoolMask output.
i tried to transpose ans get to list to join the walls . Python script is ti join two walls join geometry.
Can anybody suggest me on how do i sort the list to that i get only two walls in each list .
Example of list would be like
{a,b,c,d,e}
{1,2,3,4}
{x,y}
{a,s,d}
i need the list to be filtered or sorted as
{{a,b} ,{b,c}, {c,d}, {d,e}}
{{1,2} ,{2,3}, {3,4}}
{x,y}
{{a,s} ,{s,d}}



