Reversing every other List in a data tree

Hello,
I need some help splitting and manipulating a data tree of point lists. I have a data tree with many lists of points. The lists are split up by Z height, (this is going to be used for 3D printing layers)

I am now trying to reverse the points in every other list. Is there a way to reverse only the odd lists in a data tree?

Many Thanks
-B Carver

Hi,

Sure, you can for instance do this:

You can use Dispatch instead of two Cull components.

1 Like

Awesome! thanks ill give that a try. Im still pretty new to grasshopper and data manipulation

Will dispatch apply to separating the lists or only the individual data points?

My proposal is the same as diff-arch but instead of two culls - use dispatch.

Tree statistics β†’ dispatch the paths with a true-false pattern β†’ 2x branch β†’ reverse one of the branch components β†’ merge

Gotcha, I just got it as I worked through diff-arch’s solution. Thanks so much!

1 Like