* Reentrant safe way to get an object in a collection. Just pass the * same cookie back and forth. */
| 44 | * same cookie back and forth. |
| 45 | */ |
| 46 | vtkTransform* GetNextTransform(vtkCollectionSimpleIterator& cookie) |
| 47 | { |
| 48 | return static_cast<vtkTransform*>(this->GetNextItemAsObject(cookie)); |
| 49 | } |
| 50 | |
| 51 | protected: |
| 52 | vtkTransformCollection() = default; |
nothing calls this directly
no test coverage detected