------------------------------------------------------------------------------
| 99 | |
| 100 | //------------------------------------------------------------------------------ |
| 101 | void vtkExtentSplitter::AddExtentSource( |
| 102 | int id, int priority, int x0, int x1, int y0, int y1, int z0, int z1) |
| 103 | { |
| 104 | // Add the source. |
| 105 | vtkExtentSplitterSource& source = this->Internal->Sources[id]; |
| 106 | source.extent[0] = x0; |
| 107 | source.extent[1] = x1; |
| 108 | source.extent[2] = y0; |
| 109 | source.extent[3] = y1; |
| 110 | source.extent[4] = z0; |
| 111 | source.extent[5] = z1; |
| 112 | source.priority = priority; |
| 113 | |
| 114 | // Previously calculated sub-extents are now invalid. |
| 115 | this->Internal->SubExtents.clear(); |
| 116 | } |
| 117 | |
| 118 | //------------------------------------------------------------------------------ |
| 119 | void vtkExtentSplitter::AddExtentSource(int id, int priority, int* extent) |
no test coverage detected