Valentina Godoy: Tarea 5

De Casiopea


TítuloValentina Godoy: Tarea 5
Palabras Clavetarea 5
Período2012-2012
AsignaturaImagen Escrita 2012,
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)Valentina Godoy
ProfesorHerbert 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(); }