xxxxxxxxxx
67
let font;
let y, x;
function preload() {
font = loadFont("m5x7.ttf");
}
function setup() {
createCanvas(1000, 1000);
noiseDetail(8,0.75);
textFont(font);
textSize(72);
textAlign(CENTER,CENTER);
rectMode(CENTER);
y = height/2;
x = width/2;
let z = random(10000);
strokeWeight(1);
for (let y = 0; y < height; y++) {
for (let x = 0; x < width; x++) {
// let n = noise(x,y,z);
let c = color(random(0,255));//map(n,0.0, 1.0, 0, 255));
stroke(c);
strokeWeight(random(0.5, 5.5));
point(x,y);
}
}
}
function draw() {
// background(220);
// noLoop();
let words = "why are we here";
let tw = textWidth(words);
noStroke();
translate(x,y);
fill(color(255,0,255));
rect(-2,-2,tw+tw/8,68);
fill(color(0,255,0));
rect(2,2,tw+tw/8,68);
fill(0);
rect(0,0,tw+tw/8,68);
fill(color(255,0,255));
text(words,-2,-2)
fill(color(0,20,0));
text(words,2,2);
fill(255);
text(words, 0, -8);
if (frameCount % random(20)|0 == 0) {
y += random(1,10);
x += random(-5,5);
x = constrain(x, width/2-120, width/2+120);
if (y-72 > height) y = -10;
}
}