
A fast and easy-to-use simplex noise generator created with JavaScript and Canvas.
How to use it:
1. Import the simplex.js library.
import { simplex2D, simplex3D, simplex4D } from './simplex.js';2. Generate 2D simplex noise.
simplex2D(x, y);
3. Generate 3D simplex noise.
simplex3D(x, y, z);
4. Generate 4D simplex noise.
simplex4D(x, y, z, w);
See Also:
Changelog:
12/20/2021
- Update








Hi, thanks for supporting my project!
There is a little detail here: the library itself is implementation agnostic, it’s not related to Canvas, it just generates numeric values from -1 to 1. Canvas was only used for demo purposes.