Estudio del gesto en Processing: Hospedería de la Puntilla

De Casiopea


TítuloEstudio del gesto: Hospedería de la Puntilla
Tipo de ProyectoProyecto de Taller
Período2011-2011
AsignaturaPresentación del Diseño Gráfico 3, Presentación del Diseño Industrial 3,
Del CursoPresentación al Lenguaje Abierto,
CarrerasDiseño Gráfico"Diseño Gráfico" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property., Diseño Industrial"Diseño Industrial" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property.
Alumno(s)Javiera Palma, Camila.soto.a
ProfesorMarcelo Araya, Herbert Spencer

float a;

void setup() {
  size(200, 500);
  background(0);
 smooth();
  stroke(128,132,137);
line(150,125,100,50);
line(50,375,100,450);  
a= 50;
}

void draw() {
  if (mouseY >= a && mouseY<200){
  a=mouseY;
  line(150,125,100,a);
 line(50,375,100,500-a);
  }
  else if(mouseY>200){
    a=200;
  }
}