Struct noise::Blend [] [src]

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

Noise function that outputs a weighted blend of the output values from two source functions given the output value supplied by a control function.

This noise function uses linear interpolation to perform the blending operation.

Fields

Outputs one of the values to blend.

Outputs one of the values to blend.

Determines the weight of the blending operation. Negative values weight the blend towards the output value from the source1 function. Positive values weight the blend towards the output value from the source2 function.

Methods

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

[src]

Trait Implementations

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

[src]

Auto Trait Implementations

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

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