xxxxxxxxxx
44
var s1 = {
x: 100,
y: 50
}
var s2 = {
x: 100,
y: 50
}
var s3 = {
x: 100,
y: 50
}
var col = {
r: 0,
g: 0,
b: 0
}
function setup() {
createCanvas(400, 400);
background(0);
ellipseMode(CENTER);
}
function draw() {
col.r = random(0, 255);
col.g = random(0, 255);
col.b = random(0, 255);
s1.x = random(30, 200);
s1.y = random(30, 200);
s2.x = random(30, 280);
s2.y = random(30, 280);
s3.x = random(30, 360);
s3.y = random(30, 360);
fill(col.r, col.g, col.b, 60);
noStroke();
ellipse(s1.x, s1.y, 10, 10);
ellipse(s2.x, s2.y, 10, 10);
ellipse(s3.x, s3.y, 10, 10);
}