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

Function load_wires

python/pymesh/wires/wires_io.py:3–6  ·  view source on GitHub ↗

Create a WireNetwork object from file.

(wire_file)

Source from the content-addressed store, hash-verified

1from . import WireNetwork
2
3def load_wires(wire_file):
4 """ Create a WireNetwork object from file.
5 """
6 return WireNetwork.create_from_file(wire_file)
7
8def form_wires(vertices, edges):
9 """ Create a WireNetwork object from raw data.

Callers

nothing calls this directly

Calls 1

create_from_fileMethod · 0.80

Tested by

no test coverage detected