xxxxxxxxxx
17
function setup() {
createCanvas(700, 700);
background(248);
noFill();
rectMode(CENTER);
}
function draw() {
rS=random(20,450);
rX=random(310,390);
rY=random(310,390);
rect(rX,rY,rS);
if (frameCount == 20) {noLoop();}
}