week 2: myself in spring
- annaquarrie
- Mar 20, 2018
- 3 min read
for this weeks assignment we were to gather inspiration from a famous artwork we liked and write a program that drew an artwork based upon what we had researched. I decided to look into Bauhaus art, a movement I am heavily influenced by, that transformed design in the 20th century and is renowned by designers across the globe. These works were by a particularly famous artist that was a part of the movement, called Josef Albers. His artwork reminded me of what I have encountered having moved to Seoul, a vibrant and colourful city filled with symmetry and linearity. Each square study makes me think of the lights you can often see twinkling from any viewpoint at night, a sight I'm not used to.


I created this artwork using a Java in Processing.

/* Interactive Video Week 2; Myself in Spring
Anna Quarrie 2018318188 */ size(700, 500); background(141, 189, 193);
//large yellow square noStroke(); fill(253,215,130); rect(330, 73, 300, 300);
//medium orange square fill(245,131,77, 150); rect(360, 128, 230, 230);
//small orange square fill (190, 64, 75, 100); rect(403, 188, 150,150);
stroke(1); noFill(); rect(100, 100, 500, 300);
//rect(110, 200, 480, 100);
/*first rectangle1 on the left*/ rect(120, 200, 50, 190);
/*middle lower rectangle2 */ rect(300, 250, 70, 140);
/*middle upper rectangle3 */ rect(285, 150, 70, 80);
/*on the right rectangle4 */
rect(400, 125, 80, 215);
line(110, 110, 110, 390); line(110, 110, 590, 110);
//first two L shaped lines above rectangle1 line(120, 195, 175, 195); line(175, 195, 175, 390); line(120, 190, 180, 190); line(180, 190, 180, 390); line(120, 185, 185, 185); line(185, 185, 185, 390);
//next L shaped line line(120, 175, 195, 175); line(195, 175, 195, 390);
// next two L lines above rectangle1 line(120, 170, 200, 170); line(200, 170, 200, 390); line(120, 165, 205, 165); line(205, 165, 205, 385);
//two horizontal lines from row 41 Ls line(200, 390, 290, 390); line(205, 385, 290, 385);
//next three Ls above rectangle1 line(120, 155, 215, 155); line(215, 155, 215, 380); line(120, 150, 220, 150); line(220, 150, 220, 375); line(120, 145, 225, 145); line(225, 145, 225, 370);
//horizontal coming off row 51 Ls line(215, 380, 290, 380);
//next three Ls above rectangle1 line(120, 135, 235, 135); line(235, 135, 235, 365); line(120, 130, 240, 130); line(240, 130, 240, 360); line(120, 125, 245, 125); line(245, 125, 245, 355);
//horizontal coming off row 62 Ls line(220, 375, 290, 375);
//lines above middle rectangle2 line(295, 390, 295, 245); line(295, 245, 370, 245); line(290, 370, 290, 240); line(290, 240, 365, 240); line(285, 370, 285, 235); line(285, 235, 360, 235);
/*next three line(275, 370, 275, 225); //line(275, 225, */
//up right side of rectangle 3 line(360, 235, 360, 140); line(365, 240, 365, 135); line(370, 245, 370, 130);
//lines above r3 line(360, 140, 275, 140); line(365, 135, 270, 135); line(370, 130, 265, 130);
//lines to left of r3 line(275, 140, 275, 330); line(270, 135, 270, 335); line(265, 130, 265, 340);
//follow first line right of r2 line(375, 390, 375, 125); line(375, 125, 260, 125); line(260, 125, 260, 345);
//lines left of r4 line(380, 120, 380, 390 ); line(385, 115, 385, 390); line(390, 115, 390, 390);
line(385, 115, 120, 115); line(380, 120, 120, 120);
//lines below r4 line(405, 345, 485, 345); line(410, 350, 490, 350); line(415, 355, 495, 355); line(420, 360, 500, 360);
line(425, 370, 510, 370); line(430, 375, 515, 375); line(435, 380, 520, 380);
line(440, 390, 590, 390);
//line right r4 line(485, 345, 485, 115); line(490, 350, 490, 115); line(495, 355, 495, 115); line(500, 360, 500, 115);
line(510, 370, 510, 115); line(515, 375, 515, 115); line(520, 380, 520, 115);
Comments