xxxxxxxxxx
26
// let img;
let glitch;
function preload() {
// img = loadImage("flocus-full.png");
}
function setup() {
createCanvas(2048, 1536);
glitch = new Glitch();
loadImage("flocus-full.png", function (im) {
glitch.loadImage(im);
});
// image(img,0,0);
}
function draw() {
glitch.resetBytes();
glitch.replaceBytes(100, 104); // swap all decimal byte 100 for 104
glitch.randomBytes(1); // add one random byte for movement
glitch.buildImage();
image(glitch.image, 0, 0);
// background(220);
}