Sets the color used to draw lines and borders around shapes. This color is either specified in terms of the RGB or HSB color depending on the current colorMode(). The default color space is RGB, with each value in the range from 0 to 255. When using hexadecimal notation to speci
(int rgb)
| 6549 | * @see PGraphics#colorMode(int, float, float, float, float) |
| 6550 | */ |
| 6551 | public void stroke(int rgb) { |
| 6552 | colorCalc(rgb); |
| 6553 | strokeFromCalc(); |
| 6554 | } |
| 6555 | |
| 6556 | |
| 6557 | /** |
no test coverage detected