/* Rani Randell
rrandell@andrew.cmu.edu
Section A
Project 5 */
function setup() {
createCanvas(400, 400);
noLoop();
}
function draw() {
background(205, 100, 230);
for (var y = 0; y < 450; y += 50) {
for (var x = 0; x < 450; x += 50)
//fill(100, 230, 240); for some reason I cant get this to change
ellipse(x, y, 50, 50);
}
for (var i = 10; i < 600; i += 15) {
strokeWeight(3);
line(i, 400, i, 0);
}
}
For this project I wanted to think about classic lines and simple shapes, I really like when colors contrast on wallpaper so I tried to stay true to a contrasting and also retro vibe.