| 120 | } |
| 121 | |
| 122 | vtkUnstructuredGrid* vtkTableBasedClipDataSet::GetClippedOutput() |
| 123 | { |
| 124 | if (!this->GenerateClippedOutput) |
| 125 | { |
| 126 | return nullptr; |
| 127 | } |
| 128 | |
| 129 | return vtkUnstructuredGrid::SafeDownCast(this->GetExecutive()->GetOutputData(1)); |
| 130 | } |
| 131 | |
| 132 | //------------------------------------------------------------------------------ |
| 133 | int vtkTableBasedClipDataSet::FillInputPortInformation(int, vtkInformation* info) |
no test coverage detected