Struct noise::Power [] [src]

pub struct Power<'a, T: 'a> {
    pub source1: &'a NoiseFn<T>,
    pub source2: &'a NoiseFn<T>,
}

Noise function that raises the output value from the first source function to the power of the output value of the second source function.

Fields

Outputs a value.

Outputs a value.

Methods

impl<'a, T> Power<'a, T>
[src]

[src]

Trait Implementations

impl<'a, T> NoiseFn<T> for Power<'a, T> where
    T: Copy
[src]

[src]

Auto Trait Implementations

impl<'a, T> !Send for Power<'a, T>

impl<'a, T> !Sync for Power<'a, T>