MCPcopy Index your code
hub / github.com/benfry/processing4 / arc

Method arc

core/src/processing/core/PApplet.java:11589–11593  ·  view source on GitHub ↗

Draws an arc to the screen. Arcs are drawn along the outer edge of an ellipse defined by the a , b , c , and d parameters. The origin of the arc's ellipse may be changed with the ellipseMode() function. Use the start and stop parameters to specify the an

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

Source from the content-addressed store, hash-verified

11587 * @see PApplet#degrees(float)
11588 */
11589 public void arc(float a, float b, float c, float d,
11590 float start, float stop) {
11591 if (recorder != null) recorder.arc(a, b, c, d, start, stop);
11592 g.arc(a, b, c, d, start, stop);
11593 }
11594
11595
11596 /*

Callers 1

drawPrimitiveMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected