------------------------------------------------------------------------------
| 635 | |
| 636 | //------------------------------------------------------------------------------ |
| 637 | vtkAlgorithmOutput* vtkXYPlotActor::GetDataObjectInputConnection(unsigned int idx) |
| 638 | { |
| 639 | if (static_cast<int>(idx) <= |
| 640 | this->DataObjectInputConnectionHolder->GetNumberOfInputConnections(0)) |
| 641 | { |
| 642 | return this->DataObjectInputConnectionHolder->GetInputConnection(0, idx); |
| 643 | } |
| 644 | else |
| 645 | { |
| 646 | return nullptr; |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | //------------------------------------------------------------------------------ |
| 651 | unsigned int vtkXYPlotActor::GetNumberOfDataObjectInputConnections() |
no test coverage detected