Skip to content

Instantly share code, notes, and snippets.

@errete
errete / portada_33.pde
Last active December 31, 2015 06:48
code for the cover of http://8tracks.com/danielrt/33
int i, j; // loops
color[] c={
color(234, 38, 92), // red
color(5, 130, 204), // blue
color(144, 204, 0), // green
color(254, 183, 0) // orange
};
int[] displacement=new int[2]; // [0=x; 1=y]
int sSize=8; // squares size
PGraphics n33; // raster "33"
int i, j, x; // loops
color[] c={
color(234, 38, 92), // red
color(5, 130, 204), // blue
color(144, 204, 0), // green
color(254, 183, 0) // orange
};
PGraphics n34; // raster "33"
int gray; // color of current pixel
PFont fnt=createFont("HelveticaNeue-Bold", 54);
@errete
errete / 35.pde
Created January 17, 2014 20:37
code for the cover of http://8tracks.com/danielrt/35
int i, j, k;
float[] disp=new float[2]; // [0] = x displacement; [1] = y displacement
color[] c={
color(115, 221, 191),
color(184, 222, 83),
color(100, 193, 81),
color(21, 126, 77),
color(70, 69, 67)
};
PGraphics n35; // raster "35"
@errete
errete / 36.pde
Created January 19, 2014 20:29
processing.org code for the cover of http://8tracks.com/danielrt/36
int i, j, k; // loops
int pos[]= new int[2]; // last point of curve
color c[]={ // https://kuler.adobe.com/Delacroix-color-theme-3382641/
color(26, 56, 56),
color(63, 122, 81),
color(130, 163, 82),
color(209, 192, 98),
color(254, 190, 88),
};
PGraphics n36; // raster "36."
@errete
errete / 37.pde
Created February 10, 2014 15:13
processing.org code for the cover of http://8tracks.com/danielrt/37
int i, j;
int[][] c={ // colors
{26, 56, 56},
{254, 190, 88}
};
PGraphics n37; // raster "37."
int gray; // color of current pixel
PFont fnt=createFont("HelveticaNeueLTStd-Blk", 54);
void setup() {
@errete
errete / 38.pde
Created February 11, 2014 17:06
Processing.org code for the cover of http://8tracks.com/danielrt/38
int i, j, gray;
PGraphics n38; // raster "38."
PFont fnt=createFont("HelveticaNeueLTStd-Bd", 54);
int[][] c={ // colors
{254, 183, 0}, // orange
{5, 130, 204} // blue
};
void setup() {
size(1440, 1440);
@errete
errete / 39.pde
Created March 4, 2014 08:01
source code for the cover of http://8tracks.com/danielrt/39
int i, j, gray;
PGraphics n39; // raster "39."
PFont fnt=createFont("HelveticaNeueLTStd-Bd", 54);
color[] c={
color(234, 38, 92), // red
color(5, 130, 204), // blue
color(144, 204, 0), // green
color(254, 183, 0) // orange
};
@errete
errete / 40.pde
Created March 16, 2014 15:58
Processing.org code for the cover of http://8tracks.com/danielrt/40
int i, j, gray;
PGraphics n40; // raster "40."
PFont fnt=createFont("HelveticaNeueLTStd-Bd", 54);
color[] c={
color(234, 38, 92), // red
color(5, 130, 204), // blue
color(144, 204, 0), // green
color(254, 183, 0) // orange
};
int i, j, k, s, gray;
PGraphics n41; // raster "41."
PFont fnt=createFont("HelveticaNeueLTStd-Bd", 54);
color[] c={
color(234, 38, 92), // red
color(5, 130, 204), // blue
color(144, 204, 0), // green
color(254, 183, 0) // orange
};
@errete
errete / 42.pde
Created April 9, 2014 14:21
Processing.org code for the cover of http://8tracks.com/danielrt/42
int i, j, k, gray;
PGraphics n42; // raster "42."
PFont fnt=createFont("HelveticaNeueLTStd-Bd", 54);
color[] c={
color(234, 38, 92), // red
color(5, 130, 204), // blue
color(144, 204, 0), // green
color(254, 183, 0) // orange
};