Color.RGBtoHSB
Answered
- Need more info
- Answered
- Working on it
in
Programming Questions
•
3 years ago
Since Processing 1.1. and now also in 1.2, the Java method
Color.RGBtoHSB
does not work anymore. I obtain an error message 'Cannot find anything named "Color"'.
Any workaround?
The line in my code looks like this:
Color.RGBtoHSB(int(red(range_color[j])), int(green(range_color[j])), int(blue(range_color[j])), range_hsb[j]);
and works in Processing 1.0.9
1