MCPcopy Index your code
hub / github.com/processing/processing / noFill

Method noFill

core/src/processing/core/PShape.java:832–844  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers 3

rawLinesMethod · 0.45
rawPointsMethod · 0.45
stylesMethod · 0.45

Calls 1

showWarningMethod · 0.95

Tested by

no test coverage detected