()
| 98 | |
| 99 | |
| 100 | def main(): |
| 101 | args = parse_args() |
| 102 | mesh = pymesh.meshio.load_mesh(args.in_mesh) |
| 103 | |
| 104 | mesh = fix_mesh(mesh, detail=args.detail) |
| 105 | |
| 106 | pymesh.meshio.save_mesh(args.out_mesh, mesh) |
| 107 | |
| 108 | if args.timing: |
| 109 | pymesh.timethis.summarize() |
| 110 | |
| 111 | |
| 112 | if __name__ == "__main__": |
no test coverage detected