Camilo Escobar: Pizzarra2
De Casiopea
Título | Pizarra2 puntos |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 5 |
Asignatura | Taller Inicial Común 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) | Camilo Escobar |
Profesor | Herbert Spencer |
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(50); stroke(#F5E343, 10); line(re[i][0], re[i][1], re[i][2] ,re[i][3]); } if (x==100) { stroke(#ED3413,10); 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]); } }
}