------------------------------------------------------------------------------
| 104 | |
| 105 | //------------------------------------------------------------------------------ |
| 106 | void vtkImageStack::GetImages(vtkPropCollection* vc) |
| 107 | { |
| 108 | vtkCollectionSimpleIterator pit; |
| 109 | this->Images->InitTraversal(pit); |
| 110 | vtkImageSlice* image = nullptr; |
| 111 | while ((image = this->Images->GetNextImage(pit)) != nullptr) |
| 112 | { |
| 113 | image->GetImages(vc); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | //------------------------------------------------------------------------------ |
| 118 | void vtkImageStack::ShallowCopy(vtkProp* prop) |
nothing calls this directly
no test coverage detected