xxxxxxxxxx
46
let choices = [0,1];
function setup() {
createCanvas(600, 600);
}
function draw() {
background(255);
frameRate(10);
textSize(32);
noStroke();
console.log("Error: Please contact systems manager.");
textAlign(CENTER);
fill(0, 255, 255);
text("0101 1010", 300, 154);
text("101011 011001", 300, 190);
text("101101111011101", 300, 229);
text("01101100101010", 300, 267);
text("011001011010", 300, 305);
text("011101110", 300, 343);
text("00100", 300, 380);
text("1", 300, 418);
if (mouseIsPressed) {
blendMode(MULTIPLY);
fill(255, 0, 0);
ellipse(mouseX, mouseY, 100, 100);
}
else {
blendMode(BLEND);
}
for (let i = 0; i < 32; i=i+2) {
for (let j = 0; j < 32; j++) {
fill(255,0,0);
let r = random(choices);
text(r, 19*j, 19*i);
}
}
}