Changes the way Processing interprets color data. By default, the parameters for fill() , stroke() , background() , and color() are defined by values between 0 and 255 using the RGB color model. The colorMode() function is used to change the numerical range used for s
(int mode)
| 7546 | * @see PGraphics#stroke(float) |
| 7547 | */ |
| 7548 | public void colorMode(int mode) { |
| 7549 | colorMode(mode, colorModeX, colorModeY, colorModeZ, colorModeA); |
| 7550 | } |
| 7551 | |
| 7552 | |
| 7553 | /** |
no outgoing calls
no test coverage detected