""" Reese Cornacchia Homework 2 due Sept 7 """ img = loadImage("week02-review-2.jpg") # Use three arguments to this command if you want to use the original, # unmodified image size. Like this: image(img, 450, 0) # Add fourth and fifth arguments if you wish to scale the image size. # Keep in mind that if your width-to-height ratio is not the same # as the original, you will get some stretching. And if you specify # an image size much larger than the original, you may get some # pixelated distortion: image(img, 450, 0, 600, 200) size(1000, 1000) smooth() strokeWeight (0) fill(102, 255, 102) rect(90, 170, 300, 30) strokeWeight (0) fill(153, 51, 255) ellipse(125, 250, 100, 100) fill(153, 51, 255) ellipse(225, 250, 100, 100) strokeWeight (0) fill(153, 51, 255) ellipse(325, 250, 100, 100) strokeWeight (0) fill(153, 51, 255) ellipse(175, 335, 100, 100) strokeWeight (0) fill(153, 51, 255) ellipse(275, 335, 100, 100) strokeWeight (0) fill(153, 51, 255) ellipse(225, 420, 100, 100) strokeWeight (0)