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

Method remove_isolated_vertices

tools/Boolean/BooleanEngine.cpp:103–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101}
102
103void BooleanEngine::remove_isolated_vertices() {
104 IsolatedVertexRemoval remover(m_vertices, m_faces);
105 size_t num_removed = remover.run();
106 assert(num_removed <= m_vertices.rows());
107 m_vertices = remover.get_vertices();
108 m_faces = remover.get_faces();
109}
110
111void BooleanEngine::serialize_xml(const std::string& filename) const {
112 throw NotImplementedError("Serialization is not supported");

Callers 7

mainFunction · 0.45
mainFunction · 0.45
map_boundary_to_sphereFunction · 0.45
fix_meshFunction · 0.45
old_fix_meshFunction · 0.45
mainFunction · 0.45

Calls 3

runMethod · 0.45
get_verticesMethod · 0.45
get_facesMethod · 0.45

Tested by

no test coverage detected