How do I get the faces indices linked to the selected vertex?(BMESH)

I know about link_faces but it gives BMElemSeq. How to use it? How to get the faces index from it?

It’s basically just a list-like object (or something like that?) which contains the elements, so you can just do indices = [f.index for f in vert.link_faces].

Also, this should be in the Other Topics section, this section is only for Blender development. Maybe @MetinSeven want’s to move this?

2 Likes

Thank you, now I understand how it works. I apologize for the incorrect placement of the question.

1 Like

No problem, @derksen. I see that you’ve already moved your topic to the appropriate section, thanks.

1 Like