I want to get a edges index on selected faces[0].
How two get a edges index such as below script?
import bpy, bmesh
me = bpy.context.object.data
bm = bmesh.from_edit_mesh(me)
for eg in bm.faces[0].edges :
print(eg.index)
Please answer to me.
Thank you.
