pub struct vtkForEach(/* private fields */);Expand description
Algorithm allowing to implement a for loop using the VTK pipeline and a sister filter
vtkEndFor
This filter begins a for loop that can execute a portion of a pipeline (sub-pipeline) a certain
number of times. To be used in conjunction with the vtkEndFor filter that should end the loop.
Largely inspired by the ttkForEach/ttkEndFor in the TTK project (https://github.com/topology-tool-kit/ttk/tree/dev)
@sa vtkEndFor, vtkExecutionRange
Implementations§
Source§impl vtkForEach
impl vtkForEach
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkForEach wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkForEach
impl Default for vtkForEach
Auto Trait Implementations§
impl Freeze for vtkForEach
impl RefUnwindSafe for vtkForEach
impl !Send for vtkForEach
impl !Sync for vtkForEach
impl Unpin for vtkForEach
impl UnwindSafe for vtkForEach
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more