How to remove all points from a list whose x-value is lower than 0

Hello,
I’ve got a list of points and would like to remove all the points whose x-value is lower than zero and generate a new list with them.

Can anyone give me a hand in how is it possible to do that?

Thank you

Thanks very much!

Filter is a great solution, but also be mindful of filter by boolean mask. Similar function in principle.

I sometimes use this over filter so I can use the boolean to filter other lists by the same condition with one node pathway.

1 Like