Object selection mode
May 12, 2026 ยท View on GitHub

Tool
Click on faces, edges, or vertices to select their indices. Do not mix vertices, edges and faces and apply it to just one solid, compound, face or line.
Topology Filter
For easier selection, there is a topology filter

There are keybinding shortcuts for the topology filters :
- "v" : vertices
- "e" : edges
- "f" : faces
- "s" : solid
- "n" : none
Python functions
-
select_vertices(obj, indices)Similar to
obj.vertices()returns aShapeListof vertices associated with theindicesgiven as list, e.g.[1,3,6] -
select_vertex(obj, index)Shortcut for
select_vertices(obj, [index])[0] -
select_edges(obj, indices)Similar to
obj.edges()returns aShapeListof edges associated with theindicesgiven as list, e.g.[1,3,6] -
select_edge(obj, index)Shortcut for
select_edges(obj, [index])[0] -
select_faces(obj, indices)Similar to
obj.faces()returns aShapeListof faces associated with theindicesgiven as list, e.g.[1,3,6] -
select_face(obj, index)Shortcut for
select_faces(obj, [index])[0]
Deselect
- In any of the tools pressing "escape" will delete all the selections
- "backspace" or "mouse button right click" will delete the last selection only.