xxxxxxxxxx
32
function setup() {
createCanvas(600, 600);
}
//https://whitney.org/exhibitions/carmen-herrera#artworks
function draw() {
background(400);
colorMode(RGB)
//set fill color
fill (240, 125, 2)
rect(0,0,900)
//quad section
noStroke();
fill (2, 92, 1)
triangle(0, 0, 0, 600, 325, 600);
//rectangle part
rect(0,150,500,130)
rect(0,350,520,130)
//triangle part
triangle(500,150,500,280,545,280)
triangle(500+20,250+100,500+20,380+100,545+20,380+100)
}
function mousePressed(){
save("carmen recreation.jpeg")
}