| 12 | } |
| 13 | |
| 14 | int 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 | } |
| 26 | VTK_ABI_NAMESPACE_END |
nothing calls this directly
no test coverage detected