Featured post

new redirect for blender.org bpy docs.

http://www.blender.org/api/blender_python_api_current/ As of 10/11 november 2015 we can now link to the current api docs and not be worr...

Showing posts with label Current Mesh. Show all posts
Showing posts with label Current Mesh. Show all posts

May 14, 2011

Blender 2.5 Printing Edge Keys

quick example:
import bpy

for item in bpy.data.objects:
if item.type == 'MESH':
for e in item.data.edge_keys:
print(e)