An open API service indexing awesome lists of open source software.

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

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