xxxxxxxxxx
33
/*assignment 1:recreate an artwork
"https://www.moma.org/collection/works/79797?artist_id=3787&page=1&sov_referrer=artist"
*/
function setup() {
createCanvas(425, 530);
}
function mouseClicked() {
save("Assingment 1.png");
}
function draw() {
background(200);
// R, G & B integer values
fill(185);
quad(190+10, 0, 330, 120, 190+10, 250, 70-10, 120);
fill(220);
quad(220, 330, 200, 530, 90, 530, 170, 330);
quad(530, 280, 530, 380, 215, 370, -50, 260);
fill(150);
circle(380, 220, 50);
circle(50, 410, 50);
}