()
| 201 | return args; |
| 202 | |
| 203 | def main(): |
| 204 | args = parse_args(); |
| 205 | config = parse_config_file(args.config_file); |
| 206 | if args.output is not None: |
| 207 | config["output"] = args.output; |
| 208 | mesh = tile(config); |
| 209 | pymesh.save_mesh(config["output"], mesh, *mesh.get_attribute_names()); |
| 210 | |
| 211 | if __name__ == "__main__": |
| 212 | main(); |
no test coverage detected