| 290 | } |
| 291 | |
| 292 | void MeshChecker::init_boundary_loops() { |
| 293 | m_complex_bd = false; |
| 294 | try { |
| 295 | m_boundary_loops = EdgeUtils::chain_edges(m_boundary_edges); |
| 296 | } catch (RuntimeError& e) { |
| 297 | m_complex_bd = true; |
| 298 | std::cerr << "Warning: " << e.what() << std::endl; |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | void MeshChecker::init_edge_face_adjacency() { |
| 303 | m_edge_face_adjacency = EdgeUtils::compute_edge_face_adjacency(m_faces); |
nothing calls this directly
no test coverage detected