------------------------------------------------------------------------------
| 1548 | |
| 1549 | //------------------------------------------------------------------------------ |
| 1550 | int vtkAlgorithm::GetTotalNumberOfInputConnections() |
| 1551 | { |
| 1552 | int i; |
| 1553 | int total = 0; |
| 1554 | for (i = 0; i < this->GetNumberOfInputPorts(); ++i) |
| 1555 | { |
| 1556 | total += this->GetNumberOfInputConnections(i); |
| 1557 | } |
| 1558 | return total; |
| 1559 | } |
| 1560 | |
| 1561 | //------------------------------------------------------------------------------ |
| 1562 | vtkInformation* vtkAlgorithm::GetOutputInformation(int port) |
no test coverage detected