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