Polycurve contains edges smaller than a certain number

Im trying to filter out a list of polycurve that contains edges smaller than 350mm. I couldn’t get it right. Any help would be appreciated!

You’re comparing the individual curve lengths to the overall polycurve. You need to check to see if ANY of the curve lengths are less than 350mm. Try using List.Contains to check if your sublists contain a True boolean.

Hi Nick

Thanks for your help! Im still new to Dynamo and was wondering if you could kindly show me where should I put in the list.contains into.

Thank you.

What you need is probably List.AnyTrue or List.AnyFalse from Clockwork, it should return a boolean list according to your initial polycurves list

Thank you very much! Got it worked out!