------------------------------------------------------------------------------
| 1705 | |
| 1706 | //------------------------------------------------------------------------------ |
| 1707 | int vtkAlgorithm::UpdateExtent(const int extents[6]) |
| 1708 | { |
| 1709 | typedef vtkStreamingDemandDrivenPipeline vtkSDDP; |
| 1710 | |
| 1711 | vtkNew<vtkInformation> reqs; |
| 1712 | reqs->Set(vtkSDDP::UPDATE_EXTENT(), extents, 6); |
| 1713 | return this->Update(reqs); |
| 1714 | } |
| 1715 | |
| 1716 | //------------------------------------------------------------------------------ |
| 1717 | int vtkAlgorithm::UpdateTimeStep( |