Lowest/Highest values

I have a list of points, i would like to split them in 2 at first based on the lowest X values then from that list, order them based on the X values.

I’m looking into a List.FilterByBoolMask but could use some help with the mask :slight_smile:

Use SortByKey and Point.X to sort your points.

Count your points with List.Count.

Use List.Chop to create two sublists (using half the list count as length).

1 Like

God do i love you :slight_smile:
Sot By Key with Point.X was EXACTLY what i was looking for :slight_smile:

 

Thanks a lot… again