()
| 15 | return parser.parse_args(); |
| 16 | |
| 17 | def main(): |
| 18 | args = parse_args(); |
| 19 | mesh = pymesh.load_mesh(args.input_mesh); |
| 20 | mesh = pymesh.form_mesh(mesh.vertices, mesh.faces); |
| 21 | mesh, __ = pymesh.remove_isolated_vertices(mesh); |
| 22 | pymesh.save_mesh(args.output_mesh, mesh); |
| 23 | |
| 24 | if __name__ == "__main__": |
| 25 | main(); |
no test coverage detected