18 lines
267 B
JavaScript
18 lines
267 B
JavaScript
|
|
|
|
function setup() {
|
|
createCanvas(500, 500);
|
|
background(255,255,255)
|
|
noFill();
|
|
for (i = 0; i < 30; i++){
|
|
circle(width/2 +random(-width/10, width/10), height/2 +random(-height/10, height/10), random(15)*i);
|
|
}
|
|
}
|
|
|
|
|
|
function draw() {
|
|
|
|
}
|
|
|
|
function mousePressed(){
|
|
} |