[][src]Struct noise::Billow

pub struct Billow {
    pub octaves: usize,
    pub frequency: f64,
    pub lacunarity: f64,
    pub persistence: f64,
    // some fields omitted
}

Noise function that outputs "billowy" noise.

This noise function produces "billowy" noise suitable for clouds and rocks.

This noise function is nearly identical to fBm noise, except this noise function modifies each octave with an absolute-value function. See the documentation for fBm for more information.

Fields

octaves: usize

Total number of frequency octaves to generate the noise with.

The number of octaves control the amount of detail in the noise function. Adding more octaves increases the detail, with the drawback of increasing the calculation time.

frequency: f64

The number of cycles per unit length that the noise function outputs.

lacunarity: f64

A multiplier that determines how quickly the frequency increases for each successive octave in the noise function.

The frequency of each successive octave is equal to the product of the previous octave's frequency and the lacunarity value.

A lacunarity of 2.0 results in the frequency doubling every octave. For almost all cases, 2.0 is a good value to use.

persistence: f64

A multiplier that determines how quickly the amplitudes diminish for each successive octave in the noise function.

The amplitude of each successive octave is equal to the product of the previous octave's amplitude and the persistence value. Increasing the persistence produces "rougher" noise.

Methods

impl Billow[src]

Trait Implementations

impl MultiFractal for Billow[src]

impl NoiseFn<[f64; 2]> for Billow[src]

2-dimensional Billow noise

impl NoiseFn<[f64; 3]> for Billow[src]

3-dimensional Billow noise

impl NoiseFn<[f64; 4]> for Billow[src]

4-dimensional Billow noise

impl Seedable for Billow[src]

impl Default for Billow[src]

impl Clone for Billow[src]

impl Debug for Billow[src]

Auto Trait Implementations

impl Send for Billow

impl Unpin for Billow

impl Sync for Billow

impl UnwindSafe for Billow

impl RefUnwindSafe for Billow

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> SetParameter for T