I have created a cube in blender and I have resized it. When I use the following code to print the coordinates, it prints the coordinates for the original cube (not the resized one). Could you let me know how I can get the coordinates for the resized cube?
for item in bpy.data.objects:
print(item.name)
if item.type == 'MESH':
for vertex in item.data.vertices:
print(vertex.co)
Ctrl+A) is another command, as I assume you scaled your mesh in Object mode – Mr Zak Jul 01 '15 at 18:59