xxxxxxxxxx
23
function setup() {
createCanvas(400, 400);
}
function draw() {
setGradient(color(81, 94, 116, 150), color(11,24,46,255));
}
function setGradient(c1, c2) {
// noprotect
noFill();
for (var y = 0; y < height; y++) {
var inter = map(y, 0, height, 0, 1);
var c = lerpColor(c1, c2, inter);
stroke(c);
line(0, y, width, y);
}
}
function raindrop(x,y){
}