xxxxxxxxxx
51
/*
recreation of Kazimir Malevich's Suprematism Self Portrait in Two Dimensions
https://www.kazimirmalevich.org/suprematism-self-portrait-in-two-dimensions/
by Qingyun Zhu
9/12/2022
*/
function setup() {
createCanvas(400, 600);
background('#F9F3F3');
strokeWeight(0);
fill('#000000');
rect(105, 30, 175, 175);//1
strokeWeight(0);
fill('#FFC107');
rect(30, 240, 70, 150);//2
strokeWeight(0);
fill('#795548');
rect(70, 390, 55, 50);//3
strokeWeight(10);
fill('#FFFEFE')
stroke('#795548')
circle(155,360,50)//4
//5
strokeWeight(0);
fill('#3F51B5');
quad(
180, // x1
430, // y1
300, // x2
345, // y2
355, // x4
475, // y4
270, // x3
540, //y3
)
strokeWeight(0);
fill('#000000');
translate(310,510);
rotate(45/8.0)
rect(0, 0, 80, 20);//6
save('Suprematism Self Portrait in Two Dimensions.png');
}