Ilanit Hirnheimer: Imagen Escrita: Tarea 5

De Casiopea
Ilanit Hirnheimer: Imagen Escrita: Tarea 5


TítuloIlanit Hirnheimer: Imagen Escrita: Tarea 5
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 5
AsignaturaTaller Inicial 1ª y 2ª Etapa,
Del CursoImagen Escrita 2012,
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)Ilanit Hirnheimer
ProfesorHerbert Spencer

//Pizarra arreglada, las figuras por donde pasa el mouse apretado se oscurecen lentamente formando una linea. Luego al presionar una tecla algunos de los puntoss se unen con otra linea.

float[][] re; int x=0;

void setup() {

 size (600,600);
 re = new float [1000][4];
 background(255);

}

void draw () {

 if (mousePressed)
 {
   re[x][0] = mouseX;
   re[x][1] = mouseY;
   re[x][2] = pmouseX;
   re[x][3] = pmouseY;
   x++;
 }
 for (int i=0; i<=x; i++)
 {
   strokeWeight(4);
   stroke(#FC66FC, 1);
   line(re[i][0], re[i][1], re[i][2] ,re[i][3]);
 } 
 if (x==999)
 {
   unir();
   noLoop();
 }

}


void keyPressed() {

 if (key == 'y')
 {
   unir();
 }

}

void unir() {

 for (int u=0; u<=x; u=u+5)
 {
   for (int j=0; j<u; j=j+5)
   {
     line(re[j][0],re[j][1],re[u][0],re[u][1]);
   }
 }

}