()
| 10 | import os.path |
| 11 | |
| 12 | def parse_args(): |
| 13 | parser = argparse.ArgumentParser(description=__doc__); |
| 14 | parser.add_argument("input_mesh"); |
| 15 | parser.add_argument("path"); |
| 16 | parser.add_argument("output_mesh"); |
| 17 | return parser.parse_args(); |
| 18 | |
| 19 | def load_path_file(filename): |
| 20 | path = []; |