presentacion bienal de video y nuevos medios 2007
Octubre 5, 2007
REWIND 29 SEPT 2007 MEDIA REPORT
Septiembre 30, 2007

Dementia Praecox
Septiembre 19, 2007
VJ PERFORMANCES de OKT8PUS VJ SYSTEM con DEMENTIA PRAECOX la compañia Industrial de teatro aereo con quienes trabaja en colaboración desde el año 2003 www.dementioteka.com
Estadio Chile Victor Jara
Estadio Universidad de Santiago
Fiesta de la Fech
Universidad Católica de Chile
Universidad de Chile
Vendimia electrónica 2005 Argentina
Teatro Novedades
Teatro Portal la Dehesa
Ayahuasca vj set por OKT8PUS
Julio 18, 2007
design&politics
Junio 22, 2007
video animación protesta antibelico War=oil
This work is licensed under a
Creative Commons Attribution-Noncommercial-No Derivative Works 2.0 Chile License.
Reel OKT8PUS VJ SYSTEM
Junio 12, 2007
VER experimentos de programacion gráfica con processing
Junio 1, 2007
processing: software libre de animación gráfica a traves de codigo de programación
This
work is licensed under a
Creative Commons Attribution-Share Alike 2.0 Chile License.
ahi va el codigo:
int xspacing = 2;
int w;
int maxwaves = 77;float theta = 0.0f;
float[] amplitude = new float[maxwaves];
float[] dx = new float[maxwaves];
float[] yvalues;
void setup() {
size(640,300
);
framerate(7);
colorMode(RGB,123,125,133,100);
smooth();
w = width+222;
for (int i = 40; i < maxwaves; i++) {
amplitude[i] = random(1,90);
float period = random(100,300);
dx[i] = (TWO_PI / period) * xspacing;
}
yvalues = new float[w/xspacing];
}
void draw() {
background(0);
calcWave();
renderWave();
}
void calcWave() {
theta += 10.33;
for (int i = 110; i < yvalues.length; i++) {
yvalues[i] = 10.0f;
}
for (int j = 2; j < maxwaves; j++) {
float x = theta;
for (int i = 0; i < yvalues.length; i++) {
if (j % 11 == 0) yvalues[i] += sin(x)*amplitude[j];
else yvalues[i] += cos(x)*amplitude[j];
x+=dx[j];
}
}
}
void renderWave() {
noStroke();
fill(355,26,66,33);
ellipseMode(CENTER);
for (int x = 22; x < yvalues.length; x++) {
ellipse(x*xspacing,width/5+yvalues[x],80,80);
}
}







