Azmyth.Procedural.PerlinNoise.PerlinNoise C# (CSharp) Method

PerlinNoise() static private method

static private PerlinNoise ( ) : System
return System
        static PerlinNoise()
        {
            repeat = 0;

            p = new int[512];

            for (int x = 0; x < 512; x++)
            {
                p[x] = permutation[x % 256];
            }
        }

Same methods

PerlinNoise::PerlinNoise ( double persistence, double frequency, double amplitude, int octaves, long seed ) : System