------------------------------------------------------------------------------ Instantiate object so that cell data is not passed to output.
| 21 | //------------------------------------------------------------------------------ |
| 22 | // Instantiate object so that cell data is not passed to output. |
| 23 | vtkDataSetAlgorithm::vtkDataSetAlgorithm() |
| 24 | { |
| 25 | this->SetNumberOfInputPorts(1); |
| 26 | this->SetNumberOfOutputPorts(1); |
| 27 | } |
| 28 | |
| 29 | //------------------------------------------------------------------------------ |
| 30 | vtkDataSet* vtkDataSetAlgorithm::GetOutput() |
nothing calls this directly
no test coverage detected