María Jesús Arestizábal: 100 líneas, mouse

De Casiopea
100 líneas, mouse


Título100 líneas, mouse
Palabras Clavetarea 2
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)María Jesús Arestizábal
ProfesorHerbert Spencer

// Construir un dibujo en base de líneas, las cuales no deben estar distribuidas homogéneamente en fila.

100 líneas 1000 líneas 10000 líneas

void setup() {

 size(700, 700);

background(300); smooth(); stroke (255);}

void draw() { for (int i = 0; i < 10000; i = i+10) { line(600, mouseY, mouseY, 450);

} }