Struct noise::Abs [] [src]

pub struct Abs<Source> {
    pub source: Source,
}

Noise module that outputs the absolute value of the output value from the source module.

Fields

Outputs a value.

Methods

impl<Source> Abs<Source>
[src]

Trait Implementations

impl<Source, T, U> NoiseModule<T> for Abs<Source> where Source: NoiseModule<T, Output=U>,
        T: Copy,
        U: Float
[src]