Daniela Gallardo: 100 Lineas, Respuesta Al Mouse

De Casiopea
Proyecto Imagen Escrita N°2: 100 Lineas


TítuloProyecto Imagen Escrita N°2: 100 Lineas
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 2
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)Daniela Gallardo
ProfesorHerbert Spencer

void setup() {

 size(700,700);
 smooth();

}

void draw() {

 background(255);
 stroke(0);
 for (int i=0; i<50; i++) {
 line(width-mouseX+(5*i),height-mouseY+(5*i),width-mouseY-(5*i),height-mouseX-(5*i));

line(width-mouseY-(5*i),height-mouseY+(5*i),width-mouseX+(5*i),height-mouseX-(5*i));

 }

}