------------------------------------------------------------------------------
| 539 | |
| 540 | //------------------------------------------------------------------------------ |
| 541 | vtkAlgorithmOutput* vtkXYPlotActor::GetDataSetInputConnection(unsigned int idx) |
| 542 | { |
| 543 | if (static_cast<int>(idx) <= this->InputConnectionHolder->GetNumberOfInputConnections(0)) |
| 544 | { |
| 545 | return this->InputConnectionHolder->GetInputConnection(0, idx); |
| 546 | } |
| 547 | else |
| 548 | { |
| 549 | return nullptr; |
| 550 | } |
| 551 | } |
| 552 | |
| 553 | //------------------------------------------------------------------------------ |
| 554 | unsigned int vtkXYPlotActor::GetNumberOfDataSetInputConnections() |
no test coverage detected