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
https://docs.rs/noise/0.5.1/noise/struct.OpenSimplex.html does not specify it's output range, I only knew to look when I was getting negative numbers. Looks like it's -1 to 1, not sure if it's inclusive or not. These are the kinds of things that:
Should be consistent about, get() for all NoiseFns should produce the same rage, I suggest -1 to 1 inclusive or 0(exclusive) to 1(inclusive).
Should be well documented, even if there are no notations about compliance it should be explicitly stated in the docs. This assumes some implementations won't, for example, be able to get all the way to 1.
The text was updated successfully, but these errors were encountered:
Testing, I'm getting the range [-0.5; 0.5]. I'd also like if this information was added to the documentation.
Additionally, it would be great if there was a Range trait. That all the noise algorithms implemented. Even better if it is also implemented for the various noise functions. Such that Min, Power, etc. would correctly scale the min() and max() relative to their operation and the min/max of the source(s).
https://docs.rs/noise/0.5.1/noise/struct.OpenSimplex.html does not specify it's output range, I only knew to look when I was getting negative numbers. Looks like it's -1 to 1, not sure if it's inclusive or not. These are the kinds of things that:
The text was updated successfully, but these errors were encountered: