xxxxxxxxxx
32
var bubbles = [];
var x = 300,
y = 200;
var a, b;
function setup() {
createCanvas(600, 400);
}
function draw() {
background(0);
display();
move();
if (x >= width || x <= 0 || y >= height || y <= 0) {
x = -x;
y = -y;
}
}
function move() {
a = random(-6, 6);
b = random(-6, 6);
x += a;
y += b;
}
function display() {
stroke(255);
noFill();
strokeWeight(3);
ellipse(x, y, 30, 30);
}