function setup() {
createCanvas(400, 300);
strokeWeight(0.75);
}
function draw() {
background(10);
for(var a = 0; a < 400; a+=8){
stroke('#3FABA2');
line(a, mouseY, 400, a);
}
for(var b = 0; b < 400; b +=8){
stroke('#5AE6AC');
line(b, mouseX, 0, b)
}
for(var c = 0; c < 400; c +=8){
stroke(250);
line(c, mouseX, b, 300)
}
for(var d = 0; d < 400; d +=8){
stroke('#D0E778');
line(d, mouseY, c, 300);
}
}
I was interested in exploring how I can create the movement of waves with curves. By using different curve shapes and different colors and have them combine by moving the mouse and flow like a water ripple.