How to visualise points by its path in a tree?

Hi,
I want to visualise the the structure of a points list by its path location, the original structure look like this:


they will be looking like this point list but showing path location instead.
image
eg.if I have a 491*3 grid of points, they should be labeled:
{0,0},{0,1},{0,2}
{1,0},{1,1},{1,2}
{2,0},{2,1},{2,2}
{3,0},{3,1},{3,2}

{491,0},{491,1},{491,2}

grateful for any suggestions!

1 Like

Sounds like what you want to do is get the path numbers and write them as text at their respective locations. You can use the Tree Statistics component to get the {…} numbers as text. It flattens the data stream so make sure to Unflatten immediately. Next you can visualize the numbers with Text Tag 3D.

2 Likes


PathIndex_re.gh (12.0 KB)

2 Likes