xxxxxxxxxx
16
var diam = 40;
var rot = 0;
function setup() {
createCanvas(400, 400);
background(0,0,0);
noFill();
stroke(0,255,255);
frameRate(20);
}
function draw() {
background(0,0,0,10);
beginShape();
circle(200,200,diam);
diam = diam + 5
}