xxxxxxxxxx
51
//Take the phrase “I wish to wash my Irish wristwatch.” and display the characters in it randomly on the screen.
let str = 'I wish to wash my Irish wristwatch';
console.log(str.length)
let x = 0;
let y = 0;
let c = 0;
function setup() {
createCanvas(400, 400);
textAlign(LEFT,TOP);
textSize(30);
createP(str);
}
function draw() {
//background(220);
x = random(width);
y = random(height);
//grab character at index 'c'
let chr = str.charAt(c);
//get textwidth of character
let w = textWidth(chr)
//draw the character
text (chr, x , y);
x += w;
c ++;
c %= str.length;
//if longer than width, draw a new line
if (x > width - w){
y += textAscent() + textDescent();
x = 0;
}
/*
for (let c = 0 ; c < str.length ; c++){
let chr = str.charAt(c);
let x = 0;
let y = 0;
x += textWidth(chr);
text(chr,x,y);
}
*/
}