I have a previously assigned Vertex Groups on my object. After creating the bmesh, if I understand correctly that Vertex Group should now be dvert_lay = bm.verts.layers.deform.active. If I print that, it looks like this:
<BMLayerItem object at 0x000002A7E18B5A50>
I'd like to get a list of bm.verts from my deform layer that could be used with bmesh.ops. It should have this format:
[<BMVert(0x000002A7818090B0), index=12>, <BMVert(0x000002A7818090E8), index=13>, <BMVert(0x000002A781809120), index=14>]
Any help appreciated.