------------------------------------------------------------------------------
| 182 | |
| 183 | //------------------------------------------------------------------------------ |
| 184 | bool vtkAxisAlignedReflectionFilter::ProcessPDS( |
| 185 | vtkPartitionedDataSet* inputPDS, vtkPartitionedDataSetCollection* outputPDC, double bounds[6]) |
| 186 | { |
| 187 | vtkNew<vtkPartitionedDataSetCollection> inputPDC; |
| 188 | inputPDC->SetPartitionedDataSet(0, inputPDS); |
| 189 | vtkNew<vtkDataAssembly> assembly; |
| 190 | assembly->AddDataSetIndex(assembly->GetRootNode(), 0); |
| 191 | inputPDC->SetDataAssembly(assembly); |
| 192 | return this->ProcessPDC(inputPDC, outputPDC, bounds); |
| 193 | } |
| 194 | |
| 195 | //------------------------------------------------------------------------------ |
| 196 | bool vtkAxisAlignedReflectionFilter::ProcessDO( |
no test coverage detected