xxxxxxxxxx
23
function setup() {
createCanvas(400, 400);
}
function draw() {
//background(200);
// Define a random text size
textSize( random(10,40) );
// Handle Color Aesthetics
noStroke(); // we dont want a stroke
fill( random(0,255) , 100 ); // we want a random grey to fill the shape
// write a character on screen at the positions
// x = a random number between 0 and width
// y = a random number between 0 and height
text("&", random(0,width) , random(0,height));
}