xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
strokeWeight(0);
fill(255, 0, 0);
circle(200, 100, 80, 80);
fill (255, 255, 0);
circle(200, 200, 80, 80);
fill (0, 255, 0)
circle(200, 300, 80, 80);
strokeWeight(5);
}