(int rgb)
| 1048 | |
| 1049 | |
| 1050 | public void tint(int rgb) { |
| 1051 | if (!openShape) { |
| 1052 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "tint()"); |
| 1053 | return; |
| 1054 | } |
| 1055 | |
| 1056 | tint = true; |
| 1057 | colorCalc(rgb); |
| 1058 | tintColor = calcColor; |
| 1059 | } |
| 1060 | |
| 1061 | |
| 1062 | public void tint(int rgb, float alpha) { |
nothing calls this directly
no test coverage detected