------------------------------------------------------------------------------
| 644 | |
| 645 | //------------------------------------------------------------------------------ |
| 646 | void vtkOverlappingAMRMetaData::SetBounds(unsigned int level, unsigned int id, double* bb) |
| 647 | { |
| 648 | if (this->BlockBounds.empty()) |
| 649 | { |
| 650 | this->AllocateBlockBounds(this->GetNumberOfBlocks()); |
| 651 | } |
| 652 | |
| 653 | unsigned int index = this->GetAbsoluteBlockIndex(level, id); |
| 654 | this->BlockBounds[index] = vtkBoundingBox(bb); |
| 655 | this->UpdateBounds(level, id); |
| 656 | } |
| 657 | |
| 658 | //------------------------------------------------------------------------------ |
| 659 | void vtkOverlappingAMRMetaData::GetBounds(unsigned int level, unsigned int id, double* bb) |
nothing calls this directly
no test coverage detected