xxxxxxxxxx
28
function setup() {
createCanvas(800, 800);
background(255);
noLoop();
}
function draw() {
strokeWeight(20);
circle(width/2, height/2, 700);
drawHeart(width/2, 250, 8);
textSize(140);
textStyle(BOLD);
textAlign(CENTER);
text("Name", width/2, 540);
}