xxxxxxxxxx
//This "setup" function is called once, at start
function setup() {
frameRate(10);
createCanvas(600, 600); // width and height, in pixels
//noLoop(); // This says: only call draw() once, please!
}
// We put our drawing commands in this "draw" function.
// It will be called automatically.
function draw() {
//background("white");
noFill(); // Says: Don't colour in the the next shapes, please.
noStroke();
colorMode(HSB);
//stroke("black"); // Says: Outline the next shapes in black, please!
for (diam = 600; diam >= 0; diam -= random(10,30)) {
//Draw a circle with x of 300, y of 300, and diameter of 400
circle(300, 300, diam);
//fill(random(255), random(255), random(255));
fill(random(0,360), 60, 70)
//noStroke();
}
}