Isidora Correa: 1000 lineas tarea 2

De Casiopea



TítuloIsidora Correa: 1000 lineas tarea 2
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 2
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)Isidora Correa
ProfesorHerbert Spencer

void setup() {

 size(1000,1000);
 background(255);
 

}

void draw() {

 for (int i = 0; i < 1000; i = i+2) {
 line(0, i, i, 400);
 line(mouseX, 100, mouseY, 1000);
 

} }