------------------------------------------------------------------------------
| 86 | |
| 87 | //------------------------------------------------------------------------------ |
| 88 | vtkDataObject* vtkImprintFilter::GetTarget() |
| 89 | { |
| 90 | if (this->GetNumberOfInputConnections(0) < 1) |
| 91 | { |
| 92 | return nullptr; |
| 93 | } |
| 94 | |
| 95 | return this->GetExecutive()->GetInputData(0, 0); |
| 96 | } |
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 | void vtkImprintFilter::SetImprintConnection(vtkAlgorithmOutput* algOutput) |