- Lands End
- Yoshi's bar
- Sweet Maple
- Twin Peaks
- Sutro Baths
- Goldgen Gate Park
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int[][] result; | |
float t, c; | |
float ease(float p) { | |
return 3*p*p - 2*p*p*p; | |
} | |
float ease(float p, float g) { | |
if (p < 0.5) | |
return 0.5 * pow(2*p, g); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//--------------------------------------------------------------------------// | |
// Flow field animator by Etienne Jacob (www.necessary-disorder.tumblr.com) // | |
// Processing code (https://processing.org) // | |
// Saves frames, then you must use something else to make the GIF // | |
//--------------------------------------------------------------------------// | |
/// This code starts with the rendering system I took from @beesandbombs | |
/// (it also contains some useful functions and stuff) | |
/// You don't have to understand it | |
/// Just know that it does an average on many drawings to get a motion blur effect | |
/// from drawings parametrized by the global variable t going from 0 to 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://generateme.tumblr.com | |
// Harmonograph with noise | |
// space - save | |
// click - change | |
float time; | |
float f1,f2,f3,f4; | |
float p1,p2,p3,p4; | |
float a1,a2,a3,a4; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int[][] result; | |
float t, c; | |
float ease(float p) { | |
return 3*p*p - 2*p*p*p; | |
} | |
float ease(float p, float g) { | |
if (p < 0.5) | |
return 0.5 * pow(2*p, g); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int samplesPerFrame = 32; | |
int numFrames = 32; | |
float shutterAngle = 1.0; | |
int[][] result; | |
void setup() { | |
size(1000,1000,P3D); | |
smooth(4); | |
noStroke(); | |
result = new int[width*height][3]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// motion blur hack starts here | |
int samplesPerFrame = 32; | |
int numFrames = 48; | |
float shutterAngle = 1.0; | |
int[][] result; | |
float time; | |
void setup() { | |
size(500, 500); |
We create an index with:
- two filters:
synonyms_expand
andsynonyms_contract
- two analyzers:
synonyms_expand
andsynonyms_contract
- three text fields:
text_1
uses thesynonyms_expand
analyzer at index and search timetext_2
uses thesynonyms_expand
analyzer at index time, but thestandard
analyzer at search timetext_3
uses thesynonyms_contract
analyzer at index and search time
.