Set the RGB values based on the current HSB values.
()
| 222 | * Set the RGB values based on the current HSB values. |
| 223 | */ |
| 224 | protected void updateRGB() { |
| 225 | updateRGB(Color.HSBtoRGB(hue / 359f, |
| 226 | saturation / 99f, |
| 227 | brightness / 99f)); |
| 228 | } |
| 229 | |
| 230 | |
| 231 | /** |
no test coverage detected