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

Method remove_duplicated_vertices

tools/Wires/Misc/BoundaryRemesher.cpp:139–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137}
138
139void BoundaryRemesher::remove_duplicated_vertices() {
140 MeshCleaner cleaner;
141 cleaner.remove_isolated_vertices(m_vertices, m_faces);
142 cleaner.remove_duplicated_vertices(m_vertices, m_faces, 1e-12);
143 cleaner.remove_short_edges(m_vertices, m_faces, 1e-12);
144 assert_faces_are_valid(m_faces);
145}

Callers 1

triangulateFunction · 0.45

Calls 3

assert_faces_are_validFunction · 0.85
remove_short_edgesMethod · 0.45

Tested by

no test coverage detected