()
| 20 | mesh.add_attribute(name); |
| 21 | |
| 22 | def main(): |
| 23 | args = parse_args(); |
| 24 | mesh = pymesh.load_mesh(args.input_mesh); |
| 25 | add_attribute(mesh, args.attribute_name); |
| 26 | pymesh.save_mesh(args.output_mesh, mesh, args.attribute_name); |
| 27 | pymesh.timethis.summarize(); |
| 28 | |
| 29 | if __name__ == "__main__": |
| 30 | main(); |
no test coverage detected