Area of face in Python

Hi everyone,

how can I access the area for each face? Are they stored in a list somewhere?

Best,
Chris

You can get the area of the first face via

bpy.context.object.data.polygons[0].area

Note that it doesn’t include object scale.

Hi CoDEmanX,
thank’s! That’s what i was looking for :slight_smile:
Best,
Chris