------------------------------------------------------------------------------
| 14 | |
| 15 | //------------------------------------------------------------------------------ |
| 16 | VTK_ABI_NAMESPACE_BEGIN |
| 17 | vtkImageAlgorithm::vtkImageAlgorithm() |
| 18 | { |
| 19 | this->SetNumberOfInputPorts(1); |
| 20 | this->SetNumberOfOutputPorts(1); |
| 21 | |
| 22 | // by default process active point scalars |
| 23 | this->SetInputArrayToProcess( |
| 24 | 0, 0, 0, vtkDataObject::FIELD_ASSOCIATION_POINTS, vtkDataSetAttributes::SCALARS); |
| 25 | } |
| 26 | |
| 27 | //------------------------------------------------------------------------------ |
| 28 | vtkImageAlgorithm::~vtkImageAlgorithm() = default; |
nothing calls this directly
no test coverage detected