------------------------------------------------------------------------------ Does this prop have some translucent polygonal geometry?
| 243 | //------------------------------------------------------------------------------ |
| 244 | // Does this prop have some translucent polygonal geometry? |
| 245 | vtkTypeBool vtkImageStack::HasTranslucentPolygonalGeometry() |
| 246 | { |
| 247 | vtkCollectionSimpleIterator pit; |
| 248 | this->Images->InitTraversal(pit); |
| 249 | vtkImageSlice* image = nullptr; |
| 250 | while ((image = this->Images->GetNextImage(pit)) != nullptr) |
| 251 | { |
| 252 | if (image->HasTranslucentPolygonalGeometry()) |
| 253 | { |
| 254 | return 1; |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | |
| 261 | //------------------------------------------------------------------------------ |
| 262 | // Assembly-like behavior |
nothing calls this directly
no test coverage detected