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
Creating the following sketch produces the error Duplicate method settings() even though there's only one settings() function; the solution is to remove the smooth() call, which makes the error go away, even though the error message doesn't imply that's the solution.
snippet
void settings()
{
}
voidsetup()
{
smooth();
}
Additional context
The text was updated successfully, but these errors were encountered:
Most appropriate sub-area of Processing 4?
Core/Environment/Rendering
Processing version
4.3.1
Operating system
Windows 11
Steps to reproduce this
Creating the following sketch produces the error
Duplicate method settings()
even though there's only onesettings()
function; the solution is to remove thesmooth()
call, which makes the error go away, even though the error message doesn't imply that's the solution.snippet
Additional context
The text was updated successfully, but these errors were encountered: