faces
- property Mesh.faces
Face list.
Read access to the face list. This list should not be modified directly.
This is not the list passed as argument faces during mesh construction but it can be generated easly with a list comprehension:
>>> faces = [[int(v) for v in f] for f in mesh]
Note
The face list may contain deleted faces. A call to
clean()
will remove such entries.