PerlinNoise.md (408B)
1 # Perlin Noise 2 3 SS 4 5 **Definition:** Perlin noise is a procedural gradient texture generated using the perlin noise algorithm. 6 7 Not 100% about this: 8 9 The perlin noise algorithm creates a grid where each point on the grid is represented by a vector. We then take the dot product with the other three surrounding vectors to find the value at a given point. From here we use interpolation to fill in the rest.