sketchDownload
// Susie Kim
// Section A
function setup() {
createCanvas(300, 400);
background(235, 215, 192);
}
function draw() {
background(235, 215, 192);
for (var i = 0; i <= 100; i+= 5) {
// back mountain range lines
strokeWeight(1);
stroke(173, 178, 185);
line(0, 100 + i*2, i*5, 120 + i*4); // left set
line(300, 120 + i, i*3, 200 + i*3); // right set
// water lines
stroke(81, 99, 174);
line(300, 220 + i*4, i*3, 220 + i*4);
// water lines darker
strokeWeight(0.5);
stroke(27, 50, 148);
line(300, 265 + i*5, i*4, 265 + i*5);
// black forefront lines
stroke(0);
strokeWeight(1);
line(0, 260 + i*2, i*9, 280 + i*4); // left set
strokeWeight(1.5);
line(300, 330 + i*2, i*0.1, 360 + i*3); // darker right set
// sun reflection
stroke(255, 133, 71);
strokeWeight(1);
noFill();
ellipse(100, 100 + i*2, 60-i, 60-i);
// birbs
stroke(50);
strokeWeight(0.5);
ellipse(200+i*2, 100 - i*3, 30-i, 30-i);
ellipse(200+i*2, 40 - i*4, 20-i, 20-i);
}
}
For this week’s project, I tried to take the painting pictured below and convert it into an abstract string art design. I had a lot of fun playing with the shapes both lines and ellipses could create!