Hi,
I have a polygon with multiple selections.
For each selection, I want to know the list of faces (presented as a list of indices)
For a polygon I know how to access each selection:
tag = polygone.GetFirstTag()
while tag:
if tag.GetType() == c4d.Tpolygonselection:
print tag.GetName()
..
...
...
tag = tag.GetNext()
If you can replace the dotted lines with the correct code, thanks