()
| 830 | |
| 831 | |
| 832 | public void noFill() { |
| 833 | if (!openShape) { |
| 834 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "noFill()"); |
| 835 | return; |
| 836 | } |
| 837 | |
| 838 | fill = false; |
| 839 | fillColor = 0x0; |
| 840 | |
| 841 | if (!setAmbient) { |
| 842 | ambientColor = fillColor; |
| 843 | } |
| 844 | } |
| 845 | |
| 846 | |
| 847 | public void fill(int rgb) { |
no test coverage detected