Bmesh faces and verts

is there a direct way to get the Verts co from the face’s verts ?

I can list all edges and verts but this has duplicate index and co !

thanks
happy bl


mesh = bmesh.from_edit_mesh(C.active_object.data)
mesh.faces[0].verts[0].co

Like this?

but then how do you get all the verts for one face ?
with a loop over all verts

I found another way with doing a loop on all verts on face
but it is taking time when you got a lot of faces !

thanks
happy bl


for vert in mesh.faces[100].verts:
    print(vert.co)

That’s to loop all verts of a face with index 100