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

Method arc

core/src/processing/core/PApplet.java:12265–12269  ·  view source on GitHub ↗

( begin auto-generated from arc.xml ) Draws an arc in the display window. Arcs are drawn along the outer edge of an ellipse defined by the x , y , width and height parameters. The origin or the arc's ellipse may be changed with the ellipseMode() function. The sta

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

Source from the content-addressed store, hash-verified

12263 * @see PApplet#degrees(float)
12264 */
12265 public void arc(float a, float b, float c, float d,
12266 float start, float stop) {
12267 if (recorder != null) recorder.arc(a, b, c, d, start, stop);
12268 g.arc(a, b, c, d, start, stop);
12269 }
12270
12271
12272 /*

Callers 1

drawPrimitiveMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected