MCPcopy Create free account
hub / github.com/ImageEngine/cortex / gridNames

Function gridNames

src/IECoreVDB/bindings/IECoreVDBModule.cpp:156–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154{
155
156boost::python::list gridNames( VDBObject::Ptr vdbObject )
157{
158 boost::python::list result;
159 std::vector<std::string> names = vdbObject->gridNames();
160 for( const auto &name : names )
161 {
162 result.append( name );
163 }
164 return result;
165}
166
167} // namespace
168

Callers

nothing calls this directly

Calls 2

gridNamesMethod · 0.80
appendMethod · 0.80

Tested by

no test coverage detected