------------------------------------------------------------------------------ Return the input data or filter.
| 247 | //------------------------------------------------------------------------------ |
| 248 | // Return the input data or filter. |
| 249 | vtkPolyData* vtkGeometryFilter::GetExcludedFaces() |
| 250 | { |
| 251 | if (this->GetNumberOfInputConnections(1) < 1) |
| 252 | { |
| 253 | return nullptr; |
| 254 | } |
| 255 | return vtkPolyData::SafeDownCast(this->GetExecutive()->GetInputData(1, 0)); |
| 256 | } |
| 257 | |
| 258 | //------------------------------------------------------------------------------ |
| 259 | int vtkGeometryFilter::FillInputPortInformation(int port, vtkInformation* info) |
nothing calls this directly
no test coverage detected