------------------------------------------------------------------------------
| 74 | |
| 75 | //------------------------------------------------------------------------------ |
| 76 | vtkImageData* vtkProjectedTerrainPath::GetSource() |
| 77 | { |
| 78 | if (this->GetNumberOfInputConnections(1) < 1) |
| 79 | { |
| 80 | return nullptr; |
| 81 | } |
| 82 | return vtkImageData::SafeDownCast(this->GetExecutive()->GetInputData(1, 0)); |
| 83 | } |
| 84 | |
| 85 | //------------------------------------------------------------------------------ |
| 86 | int vtkProjectedTerrainPath::FillInputPortInformation(int port, vtkInformation* info) |
nothing calls this directly
no test coverage detected