Struct noise::HybridMulti [] [src]

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

Noise function that outputs hybrid Multifractal noise.

The result of this multifractal noise is that valleys in the noise should have smooth bottoms at all altitudes.

Fields

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.

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

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.

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 HybridMulti
[src]

DEFAULT_SEED: u32 = 0

DEFAULT_OCTAVES: usize = 6

DEFAULT_FREQUENCY: f64 = 2.0

DEFAULT_LACUNARITY: f64 = std::f64::consts::PI * 2.0 / 3.0

DEFAULT_PERSISTENCE: f64 = 0.25

MAX_OCTAVES: usize = 32

[src]

Trait Implementations

impl Clone for HybridMulti
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for HybridMulti
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for HybridMulti
[src]

[src]

Returns the "default value" for a type. Read more

impl MultiFractal for HybridMulti
[src]

[src]

[src]

[src]

[src]

impl Seedable for HybridMulti
[src]

[src]

Set the seed for the function implementing the Seedable trait

[src]

Getter to retrieve the seed from the function

impl NoiseFn<Point2<f64>> for HybridMulti
[src]

2-dimensional HybridMulti noise

[src]

impl NoiseFn<Point3<f64>> for HybridMulti
[src]

3-dimensional HybridMulti noise

[src]

impl NoiseFn<Point4<f64>> for HybridMulti
[src]

4-dimensional HybridMulti noise

[src]

Auto Trait Implementations

impl Send for HybridMulti

impl Sync for HybridMulti