← Back

Gifs

Do you have time or time has you?

Gif 1
Gif 2
Gif 3

VR

The seasons

Glitch Art

Original

The Original

Glitch 1

audacity : reverb

Pre-delay: 142 to 25, Tone high: 100 to 58.

Glitch 2

audacity : bass and treble

Bass: 0.0 to -24.0, Treble: 0.0 to 23.0.

ANALOG GLITCH

A video showcasing the process.

p5.js

let x2, y2, x3, y3;

function setup() {
  createCanvas(600, 450);
  background(10);
  x2 = random(width);
  y2 = random(height);
  x3 = random(width);
  y3 = random(height);
}

function draw() {
  stroke(200, 50);
  line(width/2, height/2, x2, y2);
  line(width/2, height/2, x3, y3);
  x2 += random(-5, 5);
  y2 += random(-5, 5);
  x3 -= random(-5, 5);
  y3 -= random(-5, 5);
}

"Saturday morning"

A generative art piece created with p5.js capturing the essence of waking up and knowing your favourite animated show will be on TV.