Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aaronjolson/469b1f13f264b941521427373c6b1ace to your computer and use it in GitHub Desktop.
Save aaronjolson/469b1f13f264b941521427373c6b1ace to your computer and use it in GitHub Desktop.
import bpy,bmesh
ob = bpy.data.objects['Cube']
bpy.ops.object.mode_set(mode='EDIT')
mesh=bmesh.from_edit_mesh(bpy.context.object.data)
for v in mesh.verts:
v.select = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment