Get point information

Hi Dynamo users,

I have 2 different point lists.

I want to find out which indexes in my first list.

How can I do that?

You could use the IndexOf node. When supplied by two lists, this node gives the location in the first list of elements in the second list. If an element is not present in the first list, it returns the value -1.

2 Likes

List.Contains should also work.

Hi @Marijn ,

Thank you so much. Now it is. (:slight_smile:

1 Like