xxxxxxxxxx
31
x=0;
xoff=0;
count=0;
//l=0;
function setup() {
createCanvas(700, 700);
//y=int(random(100,600));
y=200
background(248);
//noStroke();
rS=random(20,150);
rL=random(300,500);
}
function draw() {
xoff=xoff+0.005;
n=noise(xoff)*2;
for (l=0; l<rL; l=l+4){
ellipse(x,y*n+l,1);
}
x=x+1;
if(x==700) {
noStroke();
fill(255,0,0,50); ellipse(random(0,700),random(0,700),random(100,800));
}
}