| 346 | } |
| 347 | |
| 348 | int* vtkImageExport::WholeExtentCallback() |
| 349 | { |
| 350 | static int defaultextent[6] = { 0 }; |
| 351 | if (!this->GetInputAlgorithm()) |
| 352 | { |
| 353 | return defaultextent; |
| 354 | } |
| 355 | else |
| 356 | { |
| 357 | return this->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT()); |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | double* vtkImageExport::SpacingCallback() |
| 362 | { |
no test coverage detected