Ilanit Hirnheimer: Imagen Escrita: Tarea 5
De Casiopea
Título | Ilanit Hirnheimer: Imagen Escrita: Tarea 5 |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 5 |
Asignatura | Taller Inicial 1ª y 2ª Etapa, |
Del Curso | Imagen Escrita 2012, |
Carreras | Diseñ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 |
Profesor | Herbert 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]); } }
}