| 13 | } |
| 14 | |
| 15 | void POLYWriter::write_mesh(Mesh& mesh) { |
| 16 | write(mesh.get_vertices(), |
| 17 | mesh.get_faces(), |
| 18 | mesh.get_voxels(), |
| 19 | mesh.get_dim(), |
| 20 | mesh.get_vertex_per_face(), |
| 21 | mesh.get_vertex_per_voxel()); |
| 22 | } |
| 23 | |
| 24 | void POLYWriter::write( |
| 25 | const VectorF& vertices, |
nothing calls this directly
no test coverage detected