------------------------------------------------------------------------------
| 211 | |
| 212 | //------------------------------------------------------------------------------ |
| 213 | int vtkExtentSplitter::GetSubExtentSource(int index) |
| 214 | { |
| 215 | if (index < 0 || index >= this->GetNumberOfSubExtents()) |
| 216 | { |
| 217 | vtkErrorMacro("SubExtent index " << index << " is out of range [0," |
| 218 | << this->GetNumberOfSubExtents() - 1 << "]"); |
| 219 | return -1; |
| 220 | } |
| 221 | return this->Internal->SubExtents[index].source; |
| 222 | } |
| 223 | |
| 224 | //------------------------------------------------------------------------------ |
| 225 | int vtkExtentSplitter::ComputeSubExtents() |
no test coverage detected