MCPcopy Create free account
hub / github.com/Kitware/VTK / GetTotalNumberOfInputConnections

Method GetTotalNumberOfInputConnections

Common/ExecutionModel/vtkAlgorithm.cxx:1550–1559  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1548
1549//------------------------------------------------------------------------------
1550int 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//------------------------------------------------------------------------------
1562vtkInformation* vtkAlgorithm::GetOutputInformation(int port)

Callers 2

Calls 2

GetNumberOfInputPortsMethod · 0.95

Tested by

no test coverage detected