quil

plexus 2021-04-22T05:33:07.005500Z

I don't see a noise-val function in the API, I do see a noise function, and a corresponding noise-seed function, so it seems if you want to see the RNG for noise you should use noise-seed, not random-seed

plexus 2021-04-22T05:35:31.006400Z

Looking at processing PApplet it contains two instances of java.util.Random, internalRandom and perlinRandom. The latter is used to generate the noise, so you have to make sure you're seeding the right one.

reefersleep 2021-04-22T06:01:40.007100Z

Ah, thank you, @plexus!