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

Method get

src/Misc/Environment.h:16–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14class Environment {
15 public:
16 static std::string get(const std::string& key) {
17 char * val = getenv(key.c_str());
18 return std::string(val == NULL ? "" : val);
19 }
20
21 static std::string get_required(const std::string& key) {
22 char * val = getenv(key.c_str());

Callers 13

setup.pyFile · 0.45
save_mesh_rawFunction · 0.45
save_meshFunction · 0.45
tokMethod · 0.45
load_modifierMethod · 0.45
parse_node_fieldMethod · 0.45
parse_element_fieldMethod · 0.45
eat_white_spaceMethod · 0.45
extract_optionsFunction · 0.45
tile_with_guide_boxFunction · 0.45
tile_with_guide_meshFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected