Maithe Escobar: puntitos

De Casiopea
tarea 5


Títulotarea 5
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 5
Período2012-
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
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)Maithé Escobar
ProfesorHerbert Spencer

float[][] coords; int maxPuntos; int c;

void setup() {

size(700, 700); c = 0; // reset maxPuntos = 10000 ; coords = new float[maxPuntos][80]; strokeWeight(67); background(876); stroke (#00BFFF); colorMode (HSB); }

void draw() {

if (mousePressed) {

 coords[c][0] = mouseX;
 coords[c][1] = mouseY;
 println(c);
 c ++;

} for (int i = 20; i <= c; i++) {

 point(coords[i][0], coords[i][1]);

} }

void connect() {

stroke(#FE2E64); for (int i = 0; i <= c; i++) {

 for (int j = 0; j < i; j++) {
   line(coords[i][0], coords[30][1], coords[j][0], coords[j][1]);
   
 }

} }

void keyPressed() {

connect(); if (key == 'f'){

 stroke(255);

} if (key == 'd'){

 stroke(#00BFFF);

} if (key == 's'){

 stroke (255);
 for (int i = 0; i <= c; i++) {
 for (int j = 0; j < i; j++) {
   line(coords[i][0], coords[30][1], coords[j][0], coords[j][1]);
   
 }
 if (key == 'a'){
   saveFrame("img/marianavalenzuela.jpg");
 }

} }

}