Matias Chacon Pizarra 2 (tarea 5)
De Casiopea
Título | Matias Chacon Pizarra 2 (tarea 5) |
---|---|
Tipo de Proyecto | Proyecto de Taller, Proyecto de Curso |
Palabras Clave | tarea 5, imagen escrita 2012 |
Asignatura | Taller Inicial Común 1ª y 2ª Etapa, |
Del Curso | Imagen Escrita 2012, |
Carreras | Arquitectura, 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) | Matias Chacon |
Profesor | Herbert Spencer |
float[][] coords; int maxPuntos; int c;
void setup() {
size(600, 500); c = 0; maxPuntos = 20000; coords = new float[maxPuntos][200]; strokeWeight(2); background(#13E6C6); }
void draw() {
if (mousePressed) {
coords[c][0] = mouseX; coords[c][1] = mouseY; println(c); c ++;
} for (int i = 0; i < c; i++) {
point(coords[i][0], coords[i][1]);
} }
void connect() {
stroke(#EB26D4); for (int i = 0; i <= c; i++) {
for (int j = 0; j < i; j++) { line(coords[i][0], coords[i][1], coords[j][0], coords[j][1]); }
} }
void keyPressed() {
connect(); }