Valentina Godoy: Tarea 5
De Casiopea
Título | Valentina Godoy: Tarea 5 |
---|---|
Palabras Clave | tarea 5 |
Período | 2012-2012 |
Asignatura | Imagen Escrita 2012, |
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) | Valentina Godoy |
Profesor | Herbert Spencer |
float[][] coords; int maxPuntos; int c;
void setup() {
size(600, 600); c = 5; maxPuntos = 50000; coords = new float[maxPuntos][100]; strokeWeight(30); background(#00BFFF); }
void draw() {
if (mousePressed) {
coords[c][1] = mouseX; coords[c][3] = mouseY; println(c); c ++; } for (int i = 0; i <= c; i++) {
point(coords[i][0], coords[i][3]); } }
void connect() {
stroke(#8A0829); for (int i = 5; i <= c; i++) {
for (int p = 20; p < i; p++) {
line(coords[i][4], coords[i][2], coords[p][0], coords[p][1]);
} } }
void keyPressed() {
connect(); }