------------------------------------------------------------------------------
| 331 | |
| 332 | //------------------------------------------------------------------------------ |
| 333 | void vtkOverlappingAMRMetaData::AllocateBlockBounds(unsigned int n) |
| 334 | { |
| 335 | this->BlockBounds.clear(); |
| 336 | for (unsigned int i = 0; i < n; i++) |
| 337 | { |
| 338 | this->BlockBounds.emplace_back(); |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | //------------------------------------------------------------------------------ |
| 343 | void vtkOverlappingAMRMetaData::AllocateBoxes(unsigned int n) |
no test coverage detected