Question

I'm searching for an implementation of 1-dimension perlin noise in Clojure, so far i find a 3-Dimension implementation:

https://github.com/indy/perlin/blob/master/src/perlin/core.clj

But it don't really fit my needs

There is also the one from Processing that was wrapped in quil:

https://github.com/quil/quil/blob/master/src/quil/core.clj#L2427

But i don't know how to extract it (it is binded to the current applet)

Was it helpful?

Solution

I created a library called Clisk that may help you.

https://github.com/mikera/clisk

It has 1D, 2D, 3D and 4D noise generators of various sorts, including Perlin and Simplex noise.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top