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