Getting info per branch

Hello,

I’m trying to get information about a large number of polyhedra. Faces, vertices etc.
The part where I am stuck is how to get a list with the number of faces that has n edges.

In my file you can see that the Rhombicosidodecahedron has 12 faces with 5 sides etc.

But what I want is a long list with all the polyhedras faces.
I cannot figure out if it is a tree management thing or if I need to find the faces in some other way.

Info polyhedra.gh (124.9 KB)

Is this what you are after?


Info polyhedra_re.gh (122.3 KB)

I would like to see what sort of faces and how many sides they have for every polyhedra.
So for example the Rhombicosidodecahedron has three different kinds of faces.
1

But trying to do that with all 15 branches at once (the arrow in my file) will not show faces per polyhedra, but instead sum them all together.
2


Info polyhedra_reV2.gh (123.4 KB)

1 Like

Simplify Concatenate


Info polyhedra_reV2.gh (123.8 KB)

Fantastic!

So by using Face boundaries and Shift Paths you are able to get all list lengths back into the 15 branches.
Thank you!