//program made by Cody Colgren void setup() { size(500, 400); strokeWeight(0); stroke(0, 100); smooth(); } void keyPressed() // if the ‘z’ key is pressed the image will reset, if the ‘s’ key is pressed it will take a screenshot { if (key == ‘z’) { background(255,255,255); } if (key == ‘s’) { saveFrame(“drawing-####.png”); } }…