------------------------------------------------------------------------------
| 1095 | |
| 1096 | //------------------------------------------------------------------------------ |
| 1097 | bool vtkOverlappingAMRMetaData::HasBlockBounds() const |
| 1098 | { |
| 1099 | bool hasBlockBounds = |
| 1100 | !this->BlockBounds.empty() && this->BlockBounds.size() == this->GetNumberOfBlocks(); |
| 1101 | for (unsigned int i = 0; i < static_cast<unsigned int>(this->BlockBounds.size()); i++) |
| 1102 | { |
| 1103 | if (!this->BlockBounds[i].IsValid()) |
| 1104 | { |
| 1105 | hasBlockBounds = false; |
| 1106 | } |
| 1107 | } |
| 1108 | return hasBlockBounds; |
| 1109 | } |
| 1110 | |
| 1111 | //------------------------------------------------------------------------------ |
| 1112 | bool vtkOverlappingAMRMetaData::HasBlockBounds(unsigned int index) const |
no test coverage detected