MCPcopy Create free account
hub / github.com/benfry/processing4 / ellipseMode

Method ellipseMode

core/src/processing/core/PApplet.java:11529–11532  ·  view source on GitHub ↗

Modifies the location from which ellipses are drawn by changing the way in which parameters given to ellipse() are interpreted. The default mode is ellipseMode(CENTER) , which interprets the first two parameters of ellipse() as the shape's center point, while the thi

(int mode)

Source from the content-addressed store, hash-verified

11527 * @see PApplet#arc(float, float, float, float, float, float)
11528 */
11529 public void ellipseMode(int mode) {
11530 if (recorder != null) recorder.ellipseMode(mode);
11531 g.ellipseMode(mode);
11532 }
11533
11534
11535 /**

Callers 1

drawPrimitiveMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected