📝 What is a “noise function”? In Computer Graphics, a “noise function” refers to a mathematical function that produces a seemingly random, but deterministic, output. We often use those functions to procedurally generate textures, terrains, and other visual elements. The most commonly used noise functions might be Perlin noise and Simplex noise. Why would you make your own noise function? Usually, noise functions take…