Modifies the location from which ellipses are drawn by changing the way in which parameters given to ellipse() are interpreted. The default mode is ellipseMode(CENTER) , which interprets the first two parameters of ellipse() as the shape's center point, while the thi
(int mode)
| 11527 | * @see PApplet#arc(float, float, float, float, float, float) |
| 11528 | */ |
| 11529 | public void ellipseMode(int mode) { |
| 11530 | if (recorder != null) recorder.ellipseMode(mode); |
| 11531 | g.ellipseMode(mode); |
| 11532 | } |
| 11533 | |
| 11534 | |
| 11535 | /** |