(int rgb)
| 961 | |
| 962 | |
| 963 | public void stroke(int rgb) { |
| 964 | if (!openShape) { |
| 965 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "stroke()"); |
| 966 | return; |
| 967 | } |
| 968 | |
| 969 | stroke = true; |
| 970 | colorCalc(rgb); |
| 971 | strokeColor = calcColor; |
| 972 | } |
| 973 | |
| 974 | |
| 975 | public void stroke(int rgb, float alpha) { |