pub trait CurveSampler<N: RealField + Copy> {
// Required method
fn next(&mut self) -> PathSample<N>;
}
Expand description
A curve sampler.
Required Methods§
Sourcefn next(&mut self) -> PathSample<N>
fn next(&mut self) -> PathSample<N>
Returns the next sample point.