[][src]Struct meander::Meander

pub struct Meander<D: ArrayLength<Meander1D>> {
    pub curves: GenericArray<Meander1D, D>,
}

Represents a curve that meanders through D-dimensional space.

This can be generated randomly using rand::random().

Fields

curves: GenericArray<Meander1D, D>

Each variable is controlled by a separate 1-dimensional function defined here.

Methods

impl<D: ArrayLength<Meander1D> + ArrayLength<f64>> Meander<D>[src]

pub fn evaluate(&self, t: f64) -> GenericArray<f64, D>[src]

Find the value of each of the variables at a particular point in time.

pub fn time_steps<'a>(
    &'a self,
    dt: f64
) -> impl Iterator<Item = GenericArray<f64, D>> + 'a
[src]

Return an iterator yielding the values of the variables at intervals of dt.

pub fn into_time_steps(
    self,
    dt: f64
) -> impl Iterator<Item = GenericArray<f64, D>>
[src]

Return an iterator yielding the values of the variables at intervals of dt. Consumes self.

Trait Implementations

impl<D: Clone + ArrayLength<Meander1D>> Clone for Meander<D>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<D: Debug + ArrayLength<Meander1D>> Debug for Meander<D>[src]

impl<D: ArrayLength<Meander1D>> Distribution<Meander<D>> for Standard[src]

fn sample_iter<R>(&'a self, rng: &'a mut R) -> DistIter<'a, Self, R, T> where
    R: Rng
[src]

Create an iterator that generates random values of T, using rng as the source of randomness. Read more

Auto Trait Implementations

impl<D> Send for Meander<D>

impl<D> Sync for Meander<D>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self