lunes, 13 de junio de 2016

Dejenme si estoy llorando


Proyecto Final "imasheet"

Mi proyecto final es una instalación en la cual pretendo dialogar entre mi escultura tridimensional la cual estara en frente de un video y audio, en donde los tres elementos crearan una atmosfera de desarollo de gestación. Constantemente el audio estara repitiendo "you are a flower one of the kind" porque el espectro dentro de ella quiero que remita la pelicula "la bella y la bestia" que dentro guardan una flor hermosa y unica contraponiendolo con el video y escultura que a primera vista no son hermosas ni tienen referencia a la figura humana.

lunes, 23 de mayo de 2016

Glitch(textedit)

En esta imagen la edite en textedit y luego la edite en photoshop.

Sketch V

              // declare global variables
int xspeed, yspeed;
int xpos,ypos,wdth,ht;
            // initialize sketch
void setup() {
             // set sketch window size + background color
  size(600,400);
  background(0);
              // ball speed
  xspeed=3;
  yspeed=6;
              // ball size
  wdth = 200;
  ht=690;
              // turn off shapestroke rendering
  noStroke ();
              // initial ball placement
  xpos=width/2;
  ypos=height/2;
  frameRate(30);
}
            // begin animation loop
void draw(){
              // draw ball
  smooth ();
  fill ((random (250)),(random (290)),(random (290)));
  ellipse(xpos,ypos,wdth,ht);
             // upgrade position values
  xpos+=xspeed;
  ypos+=yspeed;
  /*conditionals 
   detects ball collission with sketch window edges
   also accounts for thickness of ball
   */
  if(xpos>=width-wdth/2 || xpos<=wdth/2){
    xspeed*=-1;
  }
  if (ypos>=height-ht/2 || ypos<=ht/2){
    yspeed*=-1;
  }
}


Sketch VI

void setup() {
  size (600,400);
  background (764367563);
}
void draw () {
  stroke (100);
 fill (78,25,123);
 rectMode (CENTER);
  rect (mouseX, mouseY, 30,10);
  fill (12,180,180);
  ellipse ((random(600)),(random(400)),20,20);
}



Sketch III

void setup() {
  size (750,520);
  background (0);
}
void draw () {
  strokeWeight (1);
  smooth (500);
  fill (random(500));
 rectMode (CENTER);
  rect ((random(1200)),(random(1000)),20,20);
  fill (17,180,180,500);
  ellipse
  ((random(1200)),(random(1200)),50,50);
}

Sketch II


size (700,520);
background (999,60,60);
smooth ();
strokeWeight (4);
fill (9080);
rectMode (CENTER);
rect (100,100,100,900);
rect (10,100,100,900);
fill (12,90,808);
ellipse (300,220,50,50);
ellipse (300,220,0,50);
ellipse (300,0,0,50);
ellipse (0,300,50,0);