Noise-field is coherent — nearby points are similar yet non-repeating — making it the foundational texture primitive for organic imagery
Value/gradient/simplex noise is the single most important texture primitive in generative visuals. Its defining property is coherence: nearby sample points have similar values, unlike hash/random noise, so the result has smooth pseudo-random variation rather than pixel-level static. This coherent-yet-non-repeating quality is what makes noise suitable as the basis for clouds, marble, terrain, smoke, and organic motion — all of which are smooth at the local scale while irregular globally. This distinguishes noise-field from oscillator-texture (periodic, mechanical stripes) and from grain-glitch (incoherent per-pixel randomness).
Examples
Hydra noise(3, 0.1) produces a coherent field where neighboring pixels differ by small amounts. Multiplying frequency makes it finer-grained; the coherence is preserved at any scale.
Assessment
Explain the difference between ‘coherent’ noise (noise-field) and ‘incoherent’ noise (grain-glitch) in terms of the visual result each produces. Name three kinds of natural phenomenon that noise-field can model and state why coherence is the enabling property.