Skip to content

TDMW/OpenSimplexNoise-for-Processing

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Noise Algorithm Library for Processing

This repo is a work-in-progress library for additional noise algorithms in Processing. There are currently implementations for:

  • Open Simplex Noise
  • Worley Noise
  • add your noise algorithm here!

Tutorials

This library was made for the video tutorial series "How to Make a Processing (Java) Library".

API

// 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);

About

A Processing library for open simplex noise

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 81.2%
  • CSS 14.2%
  • HTML 4.6%