(int rgb)
| 1236 | // Emissive set/update |
| 1237 | |
| 1238 | public void emissive(int rgb) { |
| 1239 | if (!openShape) { |
| 1240 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "emissive()"); |
| 1241 | return; |
| 1242 | } |
| 1243 | |
| 1244 | colorCalc(rgb); |
| 1245 | emissiveColor = calcColor; |
| 1246 | } |
| 1247 | |
| 1248 | |
| 1249 | public void emissive(float gray) { |
no test coverage detected