Set the RGB values based on the current HSB values.
()
| 247 | * Set the RGB values based on the current HSB values. |
| 248 | */ |
| 249 | protected void updateRGB() { |
| 250 | updateRGB(Color.HSBtoRGB(hue / 359f, |
| 251 | saturation / 99f, |
| 252 | brightness / 99f)); |
| 253 | } |
| 254 | |
| 255 | |
| 256 | /** |
no test coverage detected