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

Method fill

core/src/processing/core/PGraphics.java:6783–6786  ·  view source on GitHub ↗

( begin auto-generated from fill.xml ) Sets the color used to fill shapes. For example, if you run fill(204, 102, 0) , all subsequent shapes will be filled with orange. This color is either specified in terms of the RGB or HSB color depending on the current colorMode() (the default col

(int rgb)

Source from the content-addressed store, hash-verified

6781 * @see PGraphics#colorMode(int, float, float, float, float)
6782 */
6783 public void fill(int rgb) {
6784 colorCalc(rgb);
6785 fillFromCalc();
6786 }
6787
6788 /**
6789 * @param alpha opacity of the fill

Callers 5

rawPolysMethod · 0.95
defaultSettingsMethod · 0.95
reapplySettingsMethod · 0.95
styleMethod · 0.95
backgroundImplMethod · 0.95

Calls 2

colorCalcMethod · 0.95
fillFromCalcMethod · 0.95

Tested by

no test coverage detected