my-server
← Wiki

Worley noise

Worley noise, also called Voronoi noise and cellular noise, is a noise function introduced by Steven Worley in 1996. Worley noise is an extension of the Voronoi diagram that outputs a real value at a given coordinate that corresponds to the distance of the nth nearest seed (usually n=1) and the seeds are distributed evenly through the region. Worley noise is used to create procedural textures.

Worley noise of Euclidean distance is differentiable and continuous everywhere except on the edges of the Voronoi diagram of the set of seeds and on the location of the seeds.

Basic algorithm

The algorithm chooses random points in space (2- or 3-dimensional) and then for every location in space takes the distances F<sub>n</sub> to the nth-closest point (e.g. the second-closest point) and uses combinations of those to control color information (note that F<sub>n+1</sub> > F<sub>n</sub>). More precisely:

  • Randomly distribute feature points in space organized as grid cells. In practice, this is done on the fly without storage (as a procedural noise). The original method considered a variable number of seed points per cell so as to mimic a Poisson disc, but many implementations just put one. This is an optimization that limits the number of terms that will be compared.
  • At run time, extract the distances F<sub>n</sub> from the given location to the closest seed point. For F<sub>1</sub> It is only necessary to find the value of the seeds location in the grid cell being sampled and the grid cells adjacent to that grid cell.
  • Noise W(x) is formally the vector of distances, plus possibly the corresponding seed IDs, user-combined so as to produce a color.

See also

References

Further reading

External links