MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / parse_args

Function parse_args

scripts/merge.py:14–19  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12from pymesh import merge_meshes
13
14def parse_args():
15 parser = argparse.ArgumentParser(
16 description=__doc__);
17 parser.add_argument("-o", "--output", required=True, help="output mesh");
18 parser.add_argument("input_meshes", nargs="+", help="input meshes");
19 return parser.parse_args();
20
21def main():
22 args = parse_args();

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected