MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / clean_up_selected

Method clean_up_selected

tools/MeshUtils/SubMesh.cpp:112–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111
112void SubMesh::clean_up_selected() {
113 IsolatedVertexRemoval remover(m_vertices, m_selected_faces);
114 remover.run();
115 m_selected_vertices = remover.get_vertices();
116 m_selected_faces = remover.get_faces();
117 m_selected_vertex_indices = remover.get_ori_vertex_indices();
118}
119
120void SubMesh::clean_up_unselected() {
121 IsolatedVertexRemoval remover(m_vertices, m_unselected_faces);

Callers

nothing calls this directly

Calls 4

runMethod · 0.45
get_verticesMethod · 0.45
get_facesMethod · 0.45

Tested by

no test coverage detected