List changes


How can I split a list into groups, similar to how images are grouped?
{0}(0)&{1}(1)
{1}(0)&{2}(1)
{2}(0)&{3}(1)
{3}(0)&{4}(1)

list changes.gh (7.1 KB)

this might be one way:


list changes_inno.gh (14.9 KB)


This is not the result I wanted. What I want is to group these lines together into a single group.

this is a completely different request than the one you previously formulated, it’s not a List operation but a geometrical one

one way would be to compare the distance between each i=0 point to all i=1 points, and take the pairs for which distance is under a certain threshold that you define with a slider

Is there a way to achieve this?


Group curves.gh (8.1 KB)

1 Like

Tks!