Skip to content

Instantly share code, notes, and snippets.

@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
};
@errete
errete / 43.pde
Created April 23, 2014 18:19
Processing.org code for the cover of http://8tracks.com/danielrt/43
int i, j, gray, b;
PGraphics n43; // raster "43."
PFont fnt=createFont("HelveticaNeueLTStd-Bd", 54);
void setup() {
size(1440, 1440);
background(0);
n43=createGraphics(90, 90); // raster "43."
n43.beginDraw();
n43.background(0);
@errete
errete / 44.pde
Created May 5, 2014 20:25
Processing.org code for the cover of http://8tracks.com/danielrt/44
int pt[][][]=new int[90][90][2];
int i, j, k, gray;
int r[]=new int[2];
PGraphics n44; // raster "44."
PFont fnt=createFont("HelveticaNeueLTStd-Bd", 54);
color c[]={
color(255, 255, 215),
color(104, 102, 116),
color(121, 99, 85)
};
@errete
errete / 45.pde
Created May 11, 2014 13:03
Processing.org code for the cover of http://8tracks.com/danielrt/45
int i, j, k, gray;
float r;
PGraphics n45;
PFont fnt=createFont("HelveticaNeueLTStd-Bd", 54);
void setup() {
size(1440, 1440);
background(255);
n45=createGraphics(90, 90);
n45.beginDraw();
@errete
errete / 46.pde
Created May 27, 2014 13:25
Processing.org code for the cover of http://8tracks.com/danielrt/46
int i, j, gray;
PGraphics n46; // raster "46."
PFont fnt=createFont("HelveticaNeueLTStd-Bd", 54);
void setup() {
size(1440, 1440);
background(255);
n46=createGraphics(90, 90); // raster "46."
n46.beginDraw();
n46.background(0);