showing results for - "p5js text"
Mae
23 Jul 2018
1var word = 'The quick brown fox jumped over the lazy dog.'
2var x = 0
3var y = 10
4
5fill(255)
6text(word, x, y)
7
8// The string in the `word` variable will be written in the top left
9// To change text size use `textSize(TEXT_SIZE)`