------------------------------------------------------------------------------
| 1926 | |
| 1927 | //------------------------------------------------------------------------------ |
| 1928 | int* vtkAlgorithm::GetUpdateExtent(int port) |
| 1929 | { |
| 1930 | if (this->GetOutputInformation(port)) |
| 1931 | { |
| 1932 | return vtkStreamingDemandDrivenPipeline::GetUpdateExtent(this->GetOutputInformation(port)); |
| 1933 | } |
| 1934 | return nullptr; |
| 1935 | } |
| 1936 | |
| 1937 | //------------------------------------------------------------------------------ |
| 1938 | void vtkAlgorithm::GetUpdateExtent(int port, int& x0, int& x1, int& y0, int& y1, int& z0, int& z1) |
no test coverage detected