Vb grasshopper

How can we in vb make for each loop for each branch that is containing group of points ?
Second Question, during the for each loop of each point in a branch, how to get thatäs point’s path?

HELP!
THANKS

1 Like

Set the type hint to Point3d and the access of the input to List. Then you can iterate over the whole branch.

If you also need to know the tree path of each branch, then the access needs to be Tree instead of List. Only then will you get access to the full data.

1 Like