-
Notifications
You must be signed in to change notification settings - Fork 547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unhandled error with a decimal gamma value and input out of domain #331
Comments
Your code doesn't really make sense, since you are trying to map a value of 4 in a scale which goes from 5 to 15. Test the same with a value of 5 and it works, Now, it's not the decimal part the problem in fact. Because if you use other values outside the map (like 200) it works, it's the pow function used to get the colors. i.e. the gamma is applied fine, it's only when you make scale(x) that it fails. Pow throws NAN whenever the base is negative (below the domain) and the exponent is not integer. I have fixed it on my fork, since in such cases the values are always at the extreme left of the scale and could be clamped. |
…ath.pow usage. See [Issue 331](gka#331) Signed-off-by: regorxxx <[email protected]>
Thanks for the detailed explanation 🙂. In case that helps, I think it's completely fair to define a scale and provide a value out of the domain. For example, you want to chart temperatures and consider 19 to 24 degree Celsius to be the effective range of visualization. If you get data that's at 18 degrees, maybe an outlier, I'd expect a the scale to clamp the value, not throw an error. Is that reasonable? That's also how it works like 95% of the time, which is why I interpreted this as a bug. |
thank both @tibotiber and @regorxxx for raising the issue and the attempted fix. I agree that the outside domain use case is valid, so I'll mark this as bug and will take a look at the fix in regorxxx@3b85a96 soon. |
Hello,
Before starting, let me say I love this library and have been relying on it for years. I'm even singing its praise in our own developer documentation: https://docs.smplrspace.com/api-reference/color/overview#a-little-context ;). So THANK YOU!
I've just come across what I think is a bug. If I use a scale with a decimal gamma value and pass it an out of domain input. It's crashing.
Code:
Error:
Happy to provide any additional details, testing, or help on a PR if given pointers of where to handle this.
Take care!
PS: this can be easily handled in userland by clamping the value before passing it in, so not a really bad one.
The text was updated successfully, but these errors were encountered: