25 lines
638 B
JavaScript
Raw Normal View History

2023-01-18 16:18:38 +01:00
// Sketch 3.0: Drawing Text!
const sentence = "YOU ARE MY AMOROUS ENCHANTMENT.: MY KEEN EAGERNESS. YOU ARE MY DEVOTED ENCHANTMENT. MY YEARNING FERVENTLY LIKES YOUR AMOROUS PASSION. MY EAGERNESS TENDERLY YEARNS FOR YOUR PASSION."
function setup() {
createCanvas(800, 800);
}
function draw() {
// backgroud colour (click on swatch)
background("rgb(101,240,101)");
// font
textFont('Courier');
// font stroke colour
stroke(0, 0, 255);
// font fill colour
fill(255, 140, 0);
// text size
textSize(30);
// aligment
textAlign(CENTER, TOP);
// creates a 800 by 800 text box
text(sentence, 0, 10 , 800, 800);
}