------------------------------------------------------------------------------
| 166 | |
| 167 | //------------------------------------------------------------------------------ |
| 168 | bool vtkAxisAlignedReflectionFilter::ProcessMB( |
| 169 | vtkMultiBlockDataSet* inputMB, vtkPartitionedDataSetCollection* outputPDC, double bounds[6]) |
| 170 | { |
| 171 | vtkNew<vtkConvertToPartitionedDataSetCollection> converter; |
| 172 | converter->SetInputDataObject(inputMB); |
| 173 | converter->Update(); |
| 174 | auto inputPDC = converter->GetOutput(); |
| 175 | if (!inputPDC) |
| 176 | { |
| 177 | vtkErrorMacro("Failed to convert input multiblock dataset to partitioned dataset collection."); |
| 178 | return false; |
| 179 | } |
| 180 | return this->ProcessPDC(inputPDC, outputPDC, bounds); |
| 181 | } |
| 182 | |
| 183 | //------------------------------------------------------------------------------ |
| 184 | bool vtkAxisAlignedReflectionFilter::ProcessPDS( |
no test coverage detected