Struct noise::Invert [] [src]

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

Noise module that inverts the output value from the source module.

Fields

Outputs a value.

Methods

impl<Source> Invert<Source>
[src]

Trait Implementations

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