xxxxxxxxxx
46
let grid = [
['', '', ''],
['', '', ''],
['', '', ''],
];
let letters = ['T', 'H', 'E'];
function setup() {
createCanvas(300, 300);
noLoop();
frameRate(10)
}
function draw() {
background(220);
let w = width / 3;
let h = height / 3;
//grid lines to understand the space
/*
line(100, 0, 100, 300);
line(200, 0, 200, 300);
line(0, 100, 300, 100);
line(0, 200, 300, 200);
*/
// text
textSize(84);
textAlign(CENTER, CENTER);
//position of letters
text(letters[0], w -50, h -50 );
text(letters[1], width/2 , height/2 );
text(letters[2], w + 150, h + 150);
}