pub trait PathStepper: Iterator {
    // Required method
    fn set_step_size(&mut self, step: f64);
}
Expand description

The trait representing a “stepper” - an iterator performing one integration step along the path on every call to next()

Required Methods§

source

fn set_step_size(&mut self, step: f64)

Sets the step size for the iterations

Implementors§