------------------------------------------------------------------------------
| 1116 | |
| 1117 | //------------------------------------------------------------------------------ |
| 1118 | void vtkNetCDFCFReader::GetUpdateExtentForOutput(vtkDataSet* output, int extent[6]) |
| 1119 | { |
| 1120 | vtkInformation* info = output->GetInformation(); |
| 1121 | if (info->Has(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT())) |
| 1122 | { |
| 1123 | info->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(), extent); |
| 1124 | } |
| 1125 | else |
| 1126 | { |
| 1127 | this->Superclass::GetUpdateExtentForOutput(output, extent); |
| 1128 | } |
| 1129 | } |
| 1130 | |
| 1131 | //------------------------------------------------------------------------------ |
| 1132 | void vtkNetCDFCFReader::AddRectilinearCoordinates(vtkImageData* imageOutput) |
no test coverage detected