------------------------------------------------------------------------------
| 90 | |
| 91 | //------------------------------------------------------------------------------ |
| 92 | int vtkExtractSelectedArraysOverTime::RequestUpdateExtent( |
| 93 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 94 | { |
| 95 | assert(this->ArraysExtractor != nullptr); |
| 96 | return this->ArraysExtractor->ProcessRequest(request, inputVector, outputVector); |
| 97 | } |
| 98 | |
| 99 | //------------------------------------------------------------------------------ |
| 100 | int vtkExtractSelectedArraysOverTime::RequestData( |
nothing calls this directly
no test coverage detected