Trait ParamCurveMoments

Source
pub trait ParamCurveMoments<'a> {
    // Required method
    fn moments(&'a self) -> Moments;
}
Expand description

A trait for types that can provide moment integrals for a path using Green’s theorem.

Required Methods§

Source

fn moments(&'a self) -> Moments

Returns the moment integrals for the path using Green’s theorem.

Implementors§

Source§

impl<'a, T: 'a> ParamCurveMoments<'a> for T
where &'a T: IntoIterator<Item = PathEl>,