You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Circle example is missing the size(400, 400); function call, which sets the window size. As a result, when you run the example in Processing, the circle appears outside the visible area.
Suggested correction
Add the size(400, 400); call at the beginning of the sketch to correctly display the circle within the window:
size(400, 400);
circle(224, 184, 220);
Screenshots or references
Additional context
The Ellipse example already has the correct window size setup, as shown below:
size(400, 400);
ellipse(224, 184, 220, 220);
The text was updated successfully, but these errors were encountered:
Select the type of content error.
Other content error (please specify)
Section
Examples
Location of the error
https://processing.org/reference/circle_.html
Describe the error
The
Circle
example is missing thesize(400, 400);
function call, which sets the window size. As a result, when you run the example in Processing, the circle appears outside the visible area.Suggested correction
Add the size(400, 400); call at the beginning of the sketch to correctly display the circle within the window:
Screenshots or references
Additional context
The
Ellipse
example already has the correct window size setup, as shown below:The text was updated successfully, but these errors were encountered: