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

Function parse_args

scripts/geodesic.py:15–21  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

13import scipy.sparse.linalg
14
15def parse_args():
16 parser = argparse.ArgumentParser(description=__doc__);
17 parser.add_argument("--source", type=int, default=0,
18 help="source vertex index");
19 parser.add_argument("input_mesh");
20 parser.add_argument("output_mesh");
21 return parser.parse_args();
22
23def compute_edge_field(mesh):
24 edges = [];

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected