xxxxxxxxxx
27
//MQ My Redesign of Carmen Herrera, "Green and Orange", 1958.
function setup() {
createCanvas(800, 500);
noStroke();
}
function draw() {
background(500, 204, 0); // Yellow
fill(0, 0, 0); // Simply used Black for contrast
// Left side of the H
quad(100, 50, 300, 50, 300, 450, 100, 450);/*(Asked CHATGPT to help Align) */
// Right side of the H
quad(500, 50, 700, 50, 700, 450, 500, 450);/*(Asked CHATGPT to help Align) */
// Mdl part
quad(250, 200, 550, 200, 550, 300, 250, 300);
}
//MQ My Redesign of Carmen Herrera, "Green and Orange", 1958.