xxxxxxxxxx
42
x1=100;
y1=100;
x2=100;
y2=100;
xoff=0;
count1=0;
count2=0;
function setup() {
createCanvas(700, 700);
background(233, 228, 222);
noStroke();
fill(9, 97, 94);
//ellipseMode(CORNER);
}
function draw() {
xoff=xoff+0.01;
n=noise(xoff)*2;
fill(9, 97, 94);
s1=20;
ellipse(x1+n,y1+n,2);
x1=x1+1;
y1=y1+1;
count1=count1+1;
if (count1==s1){x1=x1-count1; y1=y1-s1+5; count1=0;}
fill(233, 228, 222);
ellipse(x2,y2+n,3);
y2=y2+1;
if (y1>height-100){y1=100; x1=x1+s1+3;}
if (y2>height-100){x2=x2+(random(2,10)); y2=100;}
if(y2>height-100){x2=900;}
if(x1>width-100){y1=900;}
}