(int rgb)
| 1199 | // Specular set/update |
| 1200 | |
| 1201 | public void specular(int rgb) { |
| 1202 | if (!openShape) { |
| 1203 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "specular()"); |
| 1204 | return; |
| 1205 | } |
| 1206 | |
| 1207 | colorCalc(rgb); |
| 1208 | specularColor = calcColor; |
| 1209 | } |
| 1210 | |
| 1211 | |
| 1212 | public void specular(float gray) { |
no test coverage detected