| 167 | } |
| 168 | |
| 169 | std::vector<std::string> VDBObject::gridNames() const |
| 170 | { |
| 171 | std::vector<std::string> outputGridNames; |
| 172 | for( const auto &it : m_grids ) |
| 173 | { |
| 174 | outputGridNames.push_back( it.first ); |
| 175 | } |
| 176 | return outputGridNames; |
| 177 | } |
| 178 | |
| 179 | void VDBObject::insertGrid( openvdb::GridBase::Ptr grid ) |
| 180 | { |
no outgoing calls