Skip to content

Instantly share code, notes, and snippets.

View liquidx's full-sized avatar

Alastair Tse liquidx

View GitHub Profile
anonymous
anonymous / brightCube.pde
Created February 11, 2017 16:13
bright cube gif
// gif by dave
// @beesandbombs
// :)
int[][] result;
float t, c;
float ease(float p) {
return 3*p*p - 2*p*p*p;
}
anonymous
anonymous / wavything.pde
Created August 28, 2016 23:05
wavy thing
// by davey aka @beesandbombs
int[][] result;
float t, c;
float ease(float p) {
return 3*p*p - 2*p*p*p;
}
float ease(float p, float g) {