------------------------------------------------------------------------------
| 55 | |
| 56 | //------------------------------------------------------------------------------ |
| 57 | vtkPolyData* vtkSelectPolyData::GetUnselectedOutput() |
| 58 | { |
| 59 | if (this->GetNumberOfOutputPorts() < 2) |
| 60 | { |
| 61 | return nullptr; |
| 62 | } |
| 63 | return vtkPolyData::SafeDownCast(this->GetExecutive()->GetOutputData(1)); |
| 64 | } |
| 65 | |
| 66 | //------------------------------------------------------------------------------ |
| 67 | vtkAlgorithmOutput* vtkSelectPolyData::GetUnselectedOutputPort() |
no test coverage detected