| 158 | } |
| 159 | |
| 160 | void TriangleMesh::verify_triangle_mesh() { |
| 161 | const size_t vertex_per_face = m_mesh->get_vertex_per_face(); |
| 162 | if (vertex_per_face != 3) { |
| 163 | throw RuntimeError("Not a triangule mesh"); |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | void TriangleMesh::init_boundary() { |
| 168 | BoundaryPtr bd = Boundary::extract_surface_boundary(*m_mesh.get()); |
nothing calls this directly
no test coverage detected