pub trait PathStepper: Iterator {
    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

Sets the step size for the iterations

Implementors