Adicione cada letra de um nome em uma matriz 4 por 4
function setup() { createCanvas(400, 400); background(220); } function draw() { textSize(30); fill(255); noStroke(); if (mouseIsPressed) { letras(mouseX, mouseY); } } function letras(x, y) { if (x <= 100 && y <= 100) { text('A', x, y); } if (x > 100 && x <= 200 && y <= 100) { text('M', x, y); } if (x > 200 && x <= 300 && y <= 100) { text('O', x, y); } if (x > 300 && y <= 100) { text('R', x, y); } if (x <= 100 && y > 100 && y <= 200) { text('E', x, y); } if (x > 100 && x <= 200 && y > 100 && y <= 200)