------------------------------------------------------------------------------
| 82 | |
| 83 | //------------------------------------------------------------------------------ |
| 84 | int vtkExtractSelectedArraysOverTime::RequestInformation( |
| 85 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 86 | { |
| 87 | assert(this->ArraysExtractor != nullptr); |
| 88 | return this->ArraysExtractor->ProcessRequest(request, inputVector, outputVector); |
| 89 | } |
| 90 | |
| 91 | //------------------------------------------------------------------------------ |
| 92 | int vtkExtractSelectedArraysOverTime::RequestUpdateExtent( |
nothing calls this directly
no test coverage detected