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

Method GetNumberOfPaths

Rendering/Core/vtkPropCollection.cxx:14–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12}
13
14int vtkPropCollection::GetNumberOfPaths()
15{
16 int numPaths = 0;
17 vtkProp* aProp;
18
19 vtkCollectionSimpleIterator pit;
20 for (this->InitTraversal(pit); (aProp = this->GetNextProp(pit));)
21 {
22 numPaths += aProp->GetNumberOfPaths();
23 }
24 return numPaths;
25}
26VTK_ABI_NAMESPACE_END

Callers

nothing calls this directly

Calls 2

GetNextPropMethod · 0.95
InitTraversalMethod · 0.45

Tested by

no test coverage detected