HalfEdge.delete_vertex
- HalfEdge.delete_vertex(key)[source]
Delete a vertex from the mesh and everything that is attached to it.
- Parameters:
- keyint
The identifier of the vertex.
- Returns:
- None
See also
Notes
In some cases, disconnected vertices can remain after application of this method. To remove these vertices as well, combine this method with vertex culling (
cull_vertices()
).