/SimplexNoise

Cpp port for Simplex Noise library

Primary LanguageC++MIT LicenseMIT

Simplex Noise implementation for 2D space

Introduction

“Simplex noise is a method for constructing an n-dimensional noise function comparable to Perlin noise ("classic" noise) but with fewer directional artefacts and, in higher dimensions, a lower computational overhead. Ken Perlin designed the algorithm in 2001 to address the limitations of his classic noise function, especially in higher dimensions.“ Description taken from Wikipedia.

About this library

Aside from couple of changes and modifications (or to be more precisely, extensions), this library is direct port of Java algorithm presented by Stefan Gustavson and optimised by Peter Eastman.

Original algorithm site:

Functions description

void randomizeSeed();

Generate random seed (by shuffling permutation table) to prevent same output each time.

void setSeed(const unsigned int &seedNumber);

Set custom seed to produce the same, expected output each time.

double signedRawNoise(const double &xPos, const double &yPos);

Get raw signed noise value.

double unsignedRawNoise(const double &xPos, const double &yPos);

Get raw unsigned noise value.

double signedFBM(const double &xPos, const double &yPos, const unsigned int &octaves, const double &lacunarity, const double &gain);

FBM stands for Fractal Brownian Motion - get signed fractal value. More about fractals can be seen here.

double unsignedFBM(const double &xPos, const double &yPos, const unsigned int &octaves, const double &lacunarity, const double &gain);

The same as above but returns unsgined fractal value.

Raw noise and Fractal Brownian Motion

Fractional Brownian Motion is the summation of successive octaves of noise, each with higher frequency and lower amplitude. Saying it simply, its an output of couple of different noises combined.

Results can be seen below (with raw noise output visualisation to the left). As one can see, FBM result in more sophisticated output:

Imgur

Fractal Brownian Motion is determined by:

  • xPos - x value for noise
  • yPos - y value for noise
  • octaves - how many noise layers are used (number of octaves determines how detailed the output will be). Differences between various octaves (1, 2 and 3) are presented below:

Octaves

  • lacunarity - is what makes the frequency grow as each octave the frequency is multiplied by the lacunarity Differences between various lacunarity values (1.0, 1.5 and 2.1042) are presented below:

Lacunarity

  • gain - also called persistence, is what makes the amplitude shrink (or not shrink). Each octave the amplitude is multiplied by the gain Differences between various persistence values (0.4, 0.5 and 0.6) are presented below:

Persistence

  • frequency - additional parameter applied directly to xPos and yPos. It determines "zoom" level for generated pattern. Differences between various frequency values (1, 2 and 4) are presented below:

Frequency

Output

How does it looks in practice?. It’s being well illustrated by below example (for the sake of simplicity, result is in greyscale):

GreyScale

Usage

Example usage

    const unsigned int WIDTH = 800;
    const unsigned int HEIGHT = 600;
    
    SimplexNoise noise;
    
    for ( std::size_t y = 0; y < HEIGHT; ++y ) {
        for ( std::size_t x = 0; x < WIDTH; ++x ) {
            double xPos = double( x ) / double( WIDTH ) - 0.5;
            double yPos = double( y ) / double( HEIGHT ) - 0.5;
    
            double noiseValue = noise.signedRawNoise( xPos, yPos );
            // do whatever you want with noiseValue here
        }
    }

Examples

Random world playground visualised using SFML library.

Additional articles

License

This project is licensed under the MIT License - see the LICENSE file for more details