------------------------------------------------------------------------------
| 588 | |
| 589 | //------------------------------------------------------------------------------ |
| 590 | void vtkImageStack::BuildPaths(vtkAssemblyPaths* paths, vtkAssemblyPath* path) |
| 591 | { |
| 592 | // the path consists only of the active image |
| 593 | vtkImageSlice* image = this->GetActiveImage(); |
| 594 | |
| 595 | if (image) |
| 596 | { |
| 597 | path->AddNode(image, image->GetMatrix()); |
| 598 | image->BuildPaths(paths, path); |
| 599 | path->DeleteLastNode(); |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | //------------------------------------------------------------------------------ |
| 604 | void vtkImageStack::PrintSelf(ostream& os, vtkIndent indent) |
no test coverage detected