------------------------------------------------------------------------------
| 134 | |
| 135 | //------------------------------------------------------------------------------ |
| 136 | void vtkExtentSplitter::RemoveAllExtentSources() |
| 137 | { |
| 138 | // Clear the set of sources. |
| 139 | this->Internal->Sources.clear(); |
| 140 | |
| 141 | // Previously calculated sub-extents are now invalid. |
| 142 | this->Internal->SubExtents.clear(); |
| 143 | } |
| 144 | |
| 145 | //------------------------------------------------------------------------------ |
| 146 | void vtkExtentSplitter::AddExtent(int x0, int x1, int y0, int y1, int z0, int z1) |
no test coverage detected