------------------------------------------------------------------------------
| 68 | |
| 69 | //------------------------------------------------------------------------------ |
| 70 | vtkTypeBool vtkRectilinearGridAlgorithm::ProcessRequest( |
| 71 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 72 | { |
| 73 | // generate the data |
| 74 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 75 | { |
| 76 | return this->RequestData(request, inputVector, outputVector); |
| 77 | } |
| 78 | |
| 79 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT())) |
| 80 | { |
| 81 | return this->RequestUpdateExtent(request, inputVector, outputVector); |
| 82 | } |
| 83 | |
| 84 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_TIME())) |
| 85 | { |
| 86 | return this->RequestUpdateTime(request, inputVector, outputVector); |
| 87 | } |
| 88 | |
| 89 | // execute information |
| 90 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION())) |
| 91 | { |
| 92 | return this->RequestInformation(request, inputVector, outputVector); |
| 93 | } |
| 94 | |
| 95 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 96 | } |
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 | int vtkRectilinearGridAlgorithm::FillOutputPortInformation( |
nothing calls this directly
no test coverage detected