Go to file
Stefan Gustavson 61279b186c Added link to clone repo 2016-05-13 17:57:24 +02:00
benchmark Linux Makefile edit 2012-03-19 10:00:17 +01:00
demo Linux Makefile edit 2012-03-19 10:00:17 +01:00
deprecated Spelling of deprecated 2011-03-25 15:10:19 +01:00
src Merge pull request #13 from JcBernack/master 2016-05-13 09:50:14 +02:00
ASHIMA.md added ASHIMA.md file. 2013-05-09 14:49:52 -07:00
LICENSE Added 4D classic noise, declutter, speedups, removed dep of noiseStdLib.glsl, benchmark changed to test all six versions of noise. 2011-04-03 17:30:50 +02:00
README Added link to clone repo 2016-05-13 17:57:24 +02:00

README

The wiki for this repository contains more information.

Simplex noise functions are (C) Ashima Arts and Stefan Gustavson
Classic noise functions are (C) Stefan Gustavson
Cellular noise functions are (C) Stefan Gustavson
The "psrdnoise" functions are (C) Stefan Gustavson

Source code for the noise functions is released under the
conditions of the MIT license. See the file LICENSE for details.

The simplex noise functions follow Ken Perlin's original idea,
more clearly explained in Stefan Gustavson's paper
"Simplex noise demystified"
http://www.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf
but without using any uniform arrays or texture engines.

Many other noise implementations make heavy use of a
texture lookup table and are texture bandwidth limited.
The noise functions in this library, however, are completely
self contained with no dependency on external data.
While not quite as fast as texture-based implementations
on typical current desktop GPUs, they are more scalable to
massive parallelism and much more convenient to use, and
they can make good use of unused ALU resources when run
concurrently with a typical texture-intensive rendering.

2016-05-13: Ashima Arts now seems to be defunct as a company
(their website and email addresses have ceased to function)
so I cloned this repository to:

https://github.com/stegu/webgl-noise/

This site is heavily linked from all over the place on the
Internet, so I (Stefan Gustavson) will keep updating both sites
for the foreseeable future as the (apparently) sole maintainer.