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

Method get_node_field_names

src/IO/MshLoader.cpp:85–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85MshLoader::FieldNames MshLoader::get_node_field_names() const {
86 FieldNames result;
87
88 for (FieldMap::const_iterator itr = m_node_fields.begin();
89 itr != m_node_fields.end(); itr++) {
90 result.push_back(itr->first);
91 }
92 return result;
93}
94
95MshLoader::FieldNames MshLoader::get_element_field_names() const {
96 FieldNames result;

Callers 2

num_attributesMethod · 0.80
get_attribute_namesMethod · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected