This repo is a work-in-progress library for additional noise algorithms in Processing. There are currently implementations for:
This library was made for the video tutorial series "How to Make a Processing (Java) Library".
// Create a noise object, optional 2nd argument for seed
OpenSimplexNoise generator = new OpenSimplexNoise(this);
// Get a noise value
float xoff = 0.3;
float val = generator.noise(xoff);