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've been having some headaches with Color today - trying to get pixel colors from two images and then combining them using the hue value of one and the saturation and brightness from another. In the end I had to use this slightly circuitous code to get it:
Palette.prototype.getColor = function(x, y) {
push()
colorMode(HSL, 1)
colorMode(RGB, 255)
var hueColor = color(this.huesImage.get(x, y))
var otherColor = color(this.otherImage.get(x, y))
colorMode(HSB, 1)
var c = color(hue(hueVar), saturation(marble), brightness(marble))
pop()
return c
}
It seems to me like it would be simpler generally to store a mode-agnostic representation of the color in Color and then export it via hue(), red() etc according to the currently set colorMode, simplifying the example to:
Palette.prototype.getColor = function(x, y) {
push()
colorMode(HSB, 1)
var hueColor = color(this.huesImage.get(x, y))
var otherColor = color(this.otherImage.get(x, y))
var c = color(hue(hueColor), saturation(otherColor), brightness(otherColor))
pop()
return c
}
I might have a niche use case, so fair enough if this isn't an issue! But this seems to me to be closer to how colors are done in Processing. For me it's unintuitive to have the colorMode attached to the color when it isn't passed as an argument to the constructor.
The text was updated successfully, but these errors were encountered:
I think that this also ties in with #1517 (i.e. making Colors mutable).
Ideally there would be a canonical array that describes the RGB screen colour (currently p5.Color.levels), and all of the other colour descriptors (red, green, hue, saturation, etc.) would be scaled and calculated/interpreted on the fly using the global colorModeat the time that the corresponding getter/setter/constructor is called.
This would make Colors completely transparent to the user (so you don’t have to keep track of e.g. whether saturation is HSL-style or HSB-style for a particular Color, or whether it is scaled from 0 to 100 or 0 to 255 for that Color…), but it would also be quite a breaking change – even from Processing – which is not necessarily desirable.
I've been having some headaches with Color today - trying to get pixel colors from two images and then combining them using the hue value of one and the saturation and brightness from another. In the end I had to use this slightly circuitous code to get it:
It seems to me like it would be simpler generally to store a mode-agnostic representation of the color in Color and then export it via hue(), red() etc according to the currently set colorMode, simplifying the example to:
I might have a niche use case, so fair enough if this isn't an issue! But this seems to me to be closer to how colors are done in Processing. For me it's unintuitive to have the colorMode attached to the color when it isn't passed as an argument to the constructor.
The text was updated successfully, but these errors were encountered: