-
Notifications
You must be signed in to change notification settings - Fork 106
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
Implemented STD Gamma II interpolator #35
base: main
Are you sure you want to change the base?
Conversation
Thanks! Here's what it gives on my screen: It seems to be reversed wrt the original, is this expected? |
Good catch! Indeed, I implemented it reversed because that's also what the project I had to reimplement (bioRad) was doing. I think we can either:
Any preference? |
I don't know if we want to support this interpolator, it seems that it has quite a few issues in itself (like these very sharp bands on "pure" colors); and the implementation implies a structural change by requiring d3-scale (which might not be a problem, but is something new). |
Thanks for the quick feedback, @Fil! A few random comments:
Anyway, thanks already for your work and for considering this! |
Hi,
I've recently had to implement a color scheme to mimic IDL's "Std Gamma II" color scale. I think it's nice to also share it with the community!
Thanks,