https://github.com/eskimoblood/elm-simplex-noise
:cloud: Generate simplex noise with elm
https://github.com/eskimoblood/elm-simplex-noise
elm noise noise-algorithms noise-generator simplex-noise
Last synced: 3 months ago
JSON representation
:cloud: Generate simplex noise with elm
- Host: GitHub
- URL: https://github.com/eskimoblood/elm-simplex-noise
- Owner: eskimoblood
- License: mit
- Created: 2016-01-22T19:37:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-15T08:55:25.000Z (over 9 years ago)
- Last Synced: 2025-10-20T15:05:37.416Z (8 months ago)
- Topics: elm, noise, noise-algorithms, noise-generator, simplex-noise
- Language: Elm
- Homepage: http://package.elm-lang.org/packages/eskimoblood/elm-simplex-noise/latest
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This is a library to generate simplex noise in Elm.
The code is a port of the [simplex noise JavaScript version](https://github.com/jwagner/simplex-noise.js) by Jonas Wagner.
## Example usage
(perm, newSeed) = permutationTable (initialSeed 42) -- generate the permutation table
noiseValue = noise3d perm 1 1 1