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
// beginShape() is not outside the for-loop as it should be
for(var i = 0; i < 20; i++) {
beginShape();
vertex(random(width), random(height);
}
endShape();
gives the error Type error: null is not an object. Could do with a more helpful error.
Another error I just had in class was Error: entire path. Still need to investigate the script in question to find out what went wrong there.
The text was updated successfully, but these errors were encountered:
I am writing this down as a reminder for later:
One common error, that happens all the time
gives the error
Type error: null is not an object
. Could do with a more helpful error.Another error I just had in class was
Error: entire path
. Still need to investigate the script in question to find out what went wrong there.The text was updated successfully, but these errors were encountered: