------------------------------------------------------------------------------
| 690 | |
| 691 | //------------------------------------------------------------------------------ |
| 692 | bool vtkOverlappingAMRMetaData::GetAMRBox(unsigned int level, unsigned int id, vtkAMRBox& box) const |
| 693 | { |
| 694 | int idx = this->GetAbsoluteBlockIndex(level, id); |
| 695 | if (idx < 0) |
| 696 | { |
| 697 | return false; |
| 698 | } |
| 699 | box = this->Boxes[idx]; |
| 700 | return true; |
| 701 | } |
| 702 | |
| 703 | //------------------------------------------------------------------------------ |
| 704 | void vtkOverlappingAMRMetaData::GetSpacing(unsigned int level, double spacing[3]) |
no test coverage detected