-
-
Notifications
You must be signed in to change notification settings - Fork 87
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
color.equals()
should not rely on object equality
#641
Comments
I wanted to mention a use case because I just came across this issue: I didn't know about Some colors I want to consider as equal in my use case then turn up as different even though they have the same coords and alpha when compared in the same space. This could potentially be related/caused by this issue. |
If space conversion is involved, I'd use |
That's likely a good call, yes. Thanks! My use case is a color picker and the application for the color comparison is to avoid firing a change event when the color hasn't changed. So if a precision error would get through the 0 comparison, it wouldn't be too bad and maybe some would expect the change event to fire in these cases. Still, I lean toward using a comparison that accounts for precision errors, too. (Feel free to mark this as off-topic if you want to keep this issue more focused) |
I just spent a while debugging some pretty hairy issue where using
equals()
on two equal colors producedfalse
. Turns out ourequals()
implementation uses object equality, which fails in a number of cases.Some ideas for how to address this:
equals()
works: convert both colors to the same color space if they are different. We can have a separatestrictEquals()
for what it does now.ColorSpace.equals()
and defer to that.The text was updated successfully, but these errors were encountered: