(int rgb)
| 996 | |
| 997 | |
| 998 | public void stroke(int rgb) { |
| 999 | if (!openShape) { |
| 1000 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "stroke()"); |
| 1001 | return; |
| 1002 | } |
| 1003 | |
| 1004 | stroke = true; |
| 1005 | colorCalc(rgb); |
| 1006 | strokeColor = calcColor; |
| 1007 | } |
| 1008 | |
| 1009 | |
| 1010 | public void stroke(int rgb, float alpha) { |
no test coverage detected