You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was in the need for #308, so I used the repo as a git dependency. I noticed, that the output is vastly different all of a sudden.
Using Fbm<OpenSimplex>, then noise = "0.8" produces:
While using noise = { git = "https://github.com/Razaekel/noise-rs" } produces:
The unreleased version produces an output that is a lot more smoother, with a much smaller output range. I took the noise value and scaled it by val = noise.get([x, y]) * 0.75 + 0.5, then I used val as the input for a jet colormap.
I would almost say, the unreleased version produces a noise output, that looks like the Fbm isn't even used, and it's just OpenSimplex.
I understand that I'm using unreleased code, but I just wanted to address it, in case this wasn't noticed, and is unintentional.
The text was updated successfully, but these errors were encountered:
I was in the need for #308, so I used the repo as a git dependency. I noticed, that the output is vastly different all of a sudden.
Using
Fbm<OpenSimplex>
, thennoise = "0.8"
produces:While using
noise = { git = "https://github.com/Razaekel/noise-rs" }
produces:The unreleased version produces an output that is a lot more smoother, with a much smaller output range. I took the noise value and scaled it by
val = noise.get([x, y]) * 0.75 + 0.5
, then I usedval
as the input for a jet colormap.I would almost say, the unreleased version produces a noise output, that looks like the
Fbm
isn't even used, and it's justOpenSimplex
.I understand that I'm using unreleased code, but I just wanted to address it, in case this wasn't noticed, and is unintentional.
The text was updated successfully, but these errors were encountered: