()
| 865 | |
| 866 | |
| 867 | public void noFill() { |
| 868 | if (!openShape) { |
| 869 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "noFill()"); |
| 870 | return; |
| 871 | } |
| 872 | |
| 873 | fill = false; |
| 874 | fillColor = 0x0; |
| 875 | |
| 876 | if (!setAmbient) { |
| 877 | ambientColor = fillColor; |
| 878 | } |
| 879 | } |
| 880 | |
| 881 | |
| 882 | public void fill(int rgb) { |
no test coverage detected