| 143 | } |
| 144 | |
| 145 | MeshPtr write_and_load_raw(const std::string& filename, MeshPtr mesh) { |
| 146 | write_tmp_mesh_raw( |
| 147 | filename, |
| 148 | mesh->get_vertices(), |
| 149 | mesh->get_faces(), |
| 150 | mesh->get_voxels(), |
| 151 | mesh->get_dim(), |
| 152 | mesh->get_vertex_per_face(), |
| 153 | mesh->get_vertex_per_voxel()); |
| 154 | return load_tmp_mesh(filename); |
| 155 | } |
| 156 | |
| 157 | protected: |
| 158 | std::string m_tmp_dir; |
nothing calls this directly
no test coverage detected