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

Method ellipse

core/src/processing/core/PApplet.java:12237–12240  ·  view source on GitHub ↗

( begin auto-generated from ellipse.xml ) Draws an ellipse (oval) in the display window. An ellipse with an equal width and height is a circle. The first two parameters set the location, the third sets the width, and the fourth sets the height. The origin may be changed with the el

(float a, float b, float c, float d)

Source from the content-addressed store, hash-verified

12235 * @see PApplet#arc(float, float, float, float, float, float)
12236 */
12237 public void ellipse(float a, float b, float c, float d) {
12238 if (recorder != null) recorder.ellipse(a, b, c, d);
12239 g.ellipse(a, b, c, d);
12240 }
12241
12242
12243 /**

Callers 1

drawPrimitiveMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected