This file contains hidden or 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
| // by Dave @ Bees & Bombs >:) | |
| int[][] result; | |
| float time; | |
| void setup() { | |
| setup_(); | |
| result = new int[width*height][3]; | |
| } |
This file contains hidden or 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
| // by Dave @ beesandbombs >:) | |
| int[][] result; | |
| float time; | |
| void setup() { | |
| setup_(); | |
| result = new int[width*height][3]; | |
| } |
This file contains hidden or 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
| void setup() { | |
| size(500, 500); | |
| smooth(8); | |
| noStroke(); | |
| } | |
| float t, tt, ht, x, y; | |
| int N = 11; | |
| float l = 24; | |
| float sp = l*1.5; |
This file contains hidden or 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 time; | |
| void setup() { | |
| setup_(); | |
| result = new int[width*height][3]; | |
| } | |
| void draw() { | |
| for (int i=0; i<width*height; i++) |
This file contains hidden or 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
| float th1, th2, r1 = 110, r2 = 100; | |
| float d; | |
| float x, y, t; | |
| int N = 66; | |
| float s = .0015; | |
| int nf = 320; | |
| float tt; | |
| void setup() { | |
| size(500, 500, P2D); |
This file contains hidden or 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
| void setup() { | |
| size(500, 500); | |
| rectMode(CENTER); | |
| noStroke(); | |
| } | |
| float x, y, t, tt; | |
| color c1 = color(32), c2 = color(240, 0, 0), cb = color(245); | |
| int N = 10; | |
| float spm = 60, sp, l1 = spm/2, l2 = spm/4; |
This file contains hidden or 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
| // by dave @ beesandbombs.tumblr.com | |
| //////////////////////////////////// | |
| int[][] result; | |
| float time; | |
| void setup() { | |
| setup_(); | |
| result = new int[width*height][3]; | |
| } |
This file contains hidden or 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
| // by dave @ beesandbombs.tumblr.com >:) | |
| void setup() { | |
| setup_(); | |
| result = new int[width*height][3]; | |
| result_ = new int[width*height][3]; | |
| } | |
| int[][] result, result_; | |
| float time; |
This file contains hidden or 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 = 42; | |
| float shutterAngle = .8; | |
| int[][] result; | |
| float time; | |
| float d1, d2, th, pp = .7, t, tt; | |
| int N = 10, M = 9; |
This file contains hidden or 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://beesandbombs.tumblr.com/post/65550137124/shapes | |
| // by dave | |
| void setup() { | |
| size(500, 500); | |
| noStroke(); | |
| rectMode(CENTER); | |
| } | |
| float time, x, y, d; |
OlderNewer