xxxxxxxxxx
24
function setup() {
createCanvas(200,200);
}
function draw() {
background(200,200,0);
translate(width/2,height/2);
display();
}
function display() {
stroke(0,0,200);
strokeWeight(2);
noFill();
ellipse(10,10,20,20);
if (true) {
textAlign(CENTER);
noStroke();
fill(200,0,0); // give some text color and it works
text('yo',10,10 + 20/2 + 20);
}
}