( 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)
| 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 | /* |