KitchenChaos/Library/PackageCache/com.unity.mathematics@1.2.6/Unity.Mathematics/Noise
Sascha 9e0f758837 init 2023-01-31 17:50:36 +07:00
..
LICENSE init 2023-01-31 17:50:36 +07:00
LICENSE.meta init 2023-01-31 17:50:36 +07:00
README init 2023-01-31 17:50:36 +07:00
README.meta init 2023-01-31 17:50:36 +07:00
cellular2D.cs init 2023-01-31 17:50:36 +07:00
cellular2D.cs.meta init 2023-01-31 17:50:36 +07:00
cellular2x2.cs init 2023-01-31 17:50:36 +07:00
cellular2x2.cs.meta init 2023-01-31 17:50:36 +07:00
cellular2x2x2.cs init 2023-01-31 17:50:36 +07:00
cellular2x2x2.cs.meta init 2023-01-31 17:50:36 +07:00
cellular3D.cs init 2023-01-31 17:50:36 +07:00
cellular3D.cs.meta init 2023-01-31 17:50:36 +07:00
classicnoise2D.cs init 2023-01-31 17:50:36 +07:00
classicnoise2D.cs.meta init 2023-01-31 17:50:36 +07:00
classicnoise3D.cs init 2023-01-31 17:50:36 +07:00
classicnoise3D.cs.meta init 2023-01-31 17:50:36 +07:00
classicnoise4D.cs init 2023-01-31 17:50:36 +07:00
classicnoise4D.cs.meta init 2023-01-31 17:50:36 +07:00
common.cs init 2023-01-31 17:50:36 +07:00
common.cs.meta init 2023-01-31 17:50:36 +07:00
noise2D.cs init 2023-01-31 17:50:36 +07:00
noise2D.cs.meta init 2023-01-31 17:50:36 +07:00
noise3D.cs init 2023-01-31 17:50:36 +07:00
noise3D.cs.meta init 2023-01-31 17:50:36 +07:00
noise3Dgrad.cs init 2023-01-31 17:50:36 +07:00
noise3Dgrad.cs.meta init 2023-01-31 17:50:36 +07:00
noise4D.cs init 2023-01-31 17:50:36 +07:00
noise4D.cs.meta init 2023-01-31 17:50:36 +07:00
psrdnoise2D.cs init 2023-01-31 17:50:36 +07:00
psrdnoise2D.cs.meta init 2023-01-31 17:50:36 +07:00

README

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

These files contain noise functions that are compatible with all
current versions of GLSL (1.20 and up), and all you need to use them
is provided in the source file. There is no external data, and no
setup procedure. Just cut and paste and call the function.

GLSL has a very rudimentary linker, so some helper functions are
included in several of the files with the same name. If you want to
use more than one of these functions in the same shader, you may run
into problems with redefinition of the functions mod289() and permute().
If that happens, just delete any superfluous definitions.

-----

Source: https://github.com/ashima/webgl-noise
Changes:
 - 10 April 2018, Unity Technologies, Ported to HPC#