xxxxxxxxxx
30
/*shape composition
by Sawyer Farias*/
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
noFill()
triangle(300, 200, 200, 130, 93, 200);
square(122, 200, 150);
square(140, 240, 50)
rect(210, 260, 50, 90)
line(400, 350, -400, 350)
line(190, 265, 140, 265)
line(165, 240, 165, 290)
circle(250, 310, 10)
}
function mousePressed() {
save("Assignment1_SawyerFarias.png");
}