------------------------------------------------------------------------------
| 640 | |
| 641 | //------------------------------------------------------------------------------ |
| 642 | inline int vtkStructuredAMRGridConnectivity::GetGridLevel(int gridIdx) |
| 643 | { |
| 644 | assert("pre: grid Index is out-of-bounds!" && (gridIdx < static_cast<int>(this->NumberOfGrids))); |
| 645 | assert("pre: grid levels vector has not been allocated" && |
| 646 | (this->GridLevels.size() == this->NumberOfGrids)); |
| 647 | return (this->GridLevels[gridIdx]); |
| 648 | } |
| 649 | |
| 650 | //------------------------------------------------------------------------------ |
| 651 | inline void vtkStructuredAMRGridConnectivity::SetRefinementRatioAtLevel(int level, int r) |
no test coverage detected