xxxxxxxxxx
19
function setup() {
createCanvas(250, 250);
}
function draw() {
background(255);
fill (0,255,0,100);
noStroke ();
ellipse (100,100,100,100);
fill (255,0,0,100);
noStroke ();
ellipse (130,150,100,100);
fill (0,0,255,100);
noStroke ();
ellipse (70,150,100,100);
}