| 18 | using namespace PyMesh; |
| 19 | |
| 20 | MeshCutter::MeshCutter(Mesh::Ptr mesh) : m_mesh(mesh) { |
| 21 | m_mesh->enable_vertex_connectivity(); |
| 22 | } |
| 23 | |
| 24 | Mesh::Ptr MeshCutter::cut_with_face_labels(const std::vector<size_t>& comp_ids) const { |
| 25 | const size_t num_faces = m_mesh->get_num_faces(); |
nothing calls this directly
no test coverage detected