0

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)

szymanowski
  • 1,359
  • 1
  • 14
  • 25
  • 2
    clisk may help you - https://github.com/mikera/clisk/blob/5eb65751a5cd13a9723e9cfbccd73da402b4239a/src/main/java/clisk/noise/Perlin.java – edbond Jan 10 '14 at 17:40

1 Answers1

1

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.

mikera
  • 105,238
  • 25
  • 256
  • 415