xxxxxxxxxx
33
x=0;
xoff=0;
function setup() {
createCanvas(700, 700);
//y=int(random(100,600));
y=50
background(248);
noStroke();
rL=random(100,600);
l=0;
n=0;
}
function draw() {
xoff=xoff+0.01;
n=noise(xoff)*2;
for (l=0; l<rL; l=l+8){
fill(0);
ellipse(x,y*n+l,3);
}
x=x+1;
if(x==700) {
fill(255, 25, 0);
ellipse(random(0,700),random(0,700),random(100,350));
}
}