------------------------------------------------------------------------------
| 357 | |
| 358 | //------------------------------------------------------------------------------ |
| 359 | void vtkOverlappingAMRMetaData::SetAMRBox(unsigned int level, unsigned int id, const vtkAMRBox& box) |
| 360 | { |
| 361 | unsigned int index = this->GetAbsoluteBlockIndex(level, id); |
| 362 | this->Boxes[index] = box; |
| 363 | this->UpdateBounds(level, id); |
| 364 | } |
| 365 | |
| 366 | //------------------------------------------------------------------------------ |
| 367 | int vtkOverlappingAMRMetaData::GetAMRBlockSourceIndex(int index) |
nothing calls this directly
no test coverage detected