()
| 14 | return parser.parse_args(); |
| 15 | |
| 16 | def main(): |
| 17 | args = parse_args(); |
| 18 | |
| 19 | mesh = pymesh.load_mesh(args.input_mesh); |
| 20 | mesh.add_attribute("vertex_gaussian_curvature"); |
| 21 | mesh.add_attribute("vertex_mean_curvature"); |
| 22 | pymesh.save_mesh(args.output_mesh, mesh, *mesh.get_attribute_names()); |
| 23 | |
| 24 | if __name__ == "__main__": |
| 25 | main(); |
no test coverage detected