I have a bounding box and I would like to select the faces of the box, for instance, the face of the box with node x-position equal to 0.0.
I'm not seeing any command in the Python scripting API that selects faces.
Any ideas how to get the faces?
Thanks,
Frank
Comments
You could make a named selection with
mw.new_face_selection(name=None)
and populate it withmw.add_to_named_selection(name, item)
.