(int rgb)
| 1164 | // Specular set/update |
| 1165 | |
| 1166 | public void specular(int rgb) { |
| 1167 | if (!openShape) { |
| 1168 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "specular()"); |
| 1169 | return; |
| 1170 | } |
| 1171 | |
| 1172 | colorCalc(rgb); |
| 1173 | specularColor = calcColor; |
| 1174 | } |
| 1175 | |
| 1176 | |
| 1177 | public void specular(float gray) { |
no test coverage detected