| 183 | } |
| 184 | |
| 185 | void VDBObject::removeGrid( const std::string &name ) |
| 186 | { |
| 187 | auto it = m_grids.find( name ); |
| 188 | |
| 189 | if ( it != m_grids.end() ) |
| 190 | { |
| 191 | m_unmodifiedFromFile = false; |
| 192 | m_grids.erase( it ); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | Imath::Box3f VDBObject::bound() const |
| 197 | { |