Isidora Correa: 100 lineas tarea 2

De Casiopea
Revisión del 09:31 2 may 2012 de Isidoracb (discusión | contribs.)
(difs.) ← Revisión anterior | Revisión actual (difs.) | Revisión siguiente → (difs.)



TítuloIsidora Correa: 100 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(400,400);
 background(255);
 

}

void draw() {

 for (int i = 0; i < 400; i = i+4) {
 line(40, i, i, 400);
 line(mouseX, 80, mouseY, 400);
 

} }