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

Method clean_up_clipped_mesh

tools/Wires/Inflator/IsotropicPeriodicInflator.cpp:153–159  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151}
152
153void IsotropicPeriodicInflator::clean_up_clipped_mesh() {
154 const Float tol = get_distance_threshold();
155 MeshCleaner cleaner;
156 cleaner.remove_isolated_vertices(m_vertices, m_faces);
157 //cleaner.remove_duplicated_vertices(m_vertices, m_faces, tol);
158 cleaner.remove_short_edges(m_vertices, m_faces, tol);
159}
160
161void IsotropicPeriodicInflator::remesh_boundary() {
162 typedef std::function<bool(const VectorF&)> IndicatorFunc;

Callers

nothing calls this directly

Calls 2

remove_short_edgesMethod · 0.45

Tested by

no test coverage detected