| 59 | } |
| 60 | |
| 61 | void EdgeElements::check_mesh() { |
| 62 | if (m_mesh->get_num_faces() == 0) { |
| 63 | throw RuntimeError("Mesh contains no face!"); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | void EdgeElements::extract_boundary_edges() { |
| 68 | Boundary::Ptr boundary = Boundary::extract_surface_boundary(*m_mesh.get()); |
nothing calls this directly
no test coverage detected