nannou
nannou copied to clipboard
Newbie question: Perlin noise in nannou and Processing
Hello, I am a beginner in creative coding and doing some coding in Processing and Nannou as a hobby and when I tried some Processing examples in Nannou I saw difference in Perlin noise.
Maybe I am lacking some fundamental knowledge about this topic, so I will appreciate some beginner-level information about it.
So my question are:
- is Perlin noise implemented differently in Processing and Nannou?
- Why is there no single-argument function of Perlin noise in Nannou?
Well, the Perlin noise function available in Nannou comes from the noise-rs: https://github.com/Razaekel/noise-rs/issues?q=perlin
as you can see in: https://github.com/nannou-org/nannou/blob/master/nannou/src/noise.rs
I found a issue explaining exactly what is going on here, with a given solution, that is to implement the BasicMulti noise module: https://github.com/Razaekel/noise-rs/issues/187