xxxxxxxxxx
30
/*
I am recreating Double Post-Image by Julio De Parc
https://www.metmuseum.org/art/collection/search/815249?exhibitionId=%7B98b35973-e36a-4fa7-be26-c1f3186ca4d2%7D&oid=815249&pkgids=541&pg=0&rpp=100000&pos=2&ft=*&offset=100000&locale=en
*/
function setup() {
createCanvas(800, 400);
}
function draw() {
background("#FCE7CF");
//first set of lines
fill("#76CF9F");
noStroke();
for(let y = 50; y < 350; y+=16){
rect(50,y,350,8)
}
//Second set of lines
fill("#EB5544");
noStroke();
for(let x = 408; x < 750; x+=16){
rect(x,50,8,300)
}
}