xxxxxxxxxx
26
function setup() {
createCanvas(600, 600);
background(250);
let x = width/2 - 75;
let y = 25;
noStroke();
for (let r = 0; r < 3; r++) {
for (let g = 0; g < 3; g++) {
for (let b = 0; b < 3; b++) {
fill(r * 128, g * 128, b * 128);
ellipse(x, y, 30, 30);
text(r + " " + g + " " + b, x - 12, y + 25);
x += 50;
}
y += 50;
x = width/2 - 75;
}
}
}
function draw() {
// background(220);
}