| 151 | } |
| 152 | |
| 153 | void 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 | |
| 161 | void IsotropicPeriodicInflator::remesh_boundary() { |
| 162 | typedef std::function<bool(const VectorF&)> IndicatorFunc; |
nothing calls this directly
no test coverage detected