How to get access to new faces created by array modificator in Python? Now I use:
me = bpy.context.object.data
bm = bmesh.new()
bm.from_mesh(me)
for f in bm.faces:
...
But new faces from not applied array dont visible by this way.